Beispiel #1
0
 public IList <EmployeeAttendance> GetAll(int year, int month)
 {
     return(_repository.GetAll(year, month));
 }
 public IList <EmployeeAttendance> GetAll()
 {
     return(_repository.GetAll());
 }
 public IEnumerable <EmployeeAttendance> GetAllEmployeeAttendance()
 {
     return(employeeAttendanceRepository.GetAll());
 }