sigd/app/Services/Reports/GpcOutputService.php

15 lines
267 B
PHP

<?php
namespace App\Services\Reports;
use App\Models\ActivityGpcOutput;
use App\Services\SigdCrudService;
class GpcOutputService extends SigdCrudService
{
public function __construct(ActivityGpcOutput $model)
{
parent::__construct($model);
}
}