File "ClassSectionRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/ClassSection/ClassSectionRepository.php
File size: 308 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\ClassSection;

use App\Models\ClassSection;
use App\Repositories\Saas\SaaSRepository;

class ClassSectionRepository extends SaaSRepository implements ClassSectionInterface {
    public function __construct(ClassSection $model) {
        parent::__construct($model);
    }
}