File "OnlineExamQuestionChoiceRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/OnlineExamQuestionChoice/OnlineExamQuestionChoiceRepository.php
File size: 369 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\OnlineExamQuestionChoice;

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

class OnlineExamQuestionChoiceRepository extends SaaSRepository implements OnlineExamQuestionChoiceInterface {

    public function __construct(OnlineExamQuestionChoice $model) {
        parent::__construct($model);
    }
}