File "ClassSubjectRepository.php"

Full Path: /home/trinadezambia/public_html/demo-school-management.trinadezambia.com/PHP_Code/app/Repositories/ClassSubject/ClassSubjectRepository.php
File size: 308 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\ClassSubject;

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

class ClassSubjectRepository extends SaaSRepository implements ClassSubjectInterface {
    public function __construct(ClassSubject $model) {
        parent::__construct($model);
    }
}