mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-04 18:16:05 -04:00
19 lines
305 B
PHP
19 lines
305 B
PHP
<?php
|
|
|
|
namespace Modules\Attendance\Repositories;
|
|
|
|
interface HolidayRepositoryInterface
|
|
{
|
|
public function all();
|
|
|
|
public function create(array $data);
|
|
|
|
public function find($id);
|
|
|
|
public function copyYear($year);
|
|
|
|
public function year($year);
|
|
|
|
public function getHoliday($date);
|
|
}
|