Example #1
0
 public double GetWorkHours(Staff staff, DateTime startDate, DateTime endDate)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public List <WorkingTime> GetAllWorkingTimes(Staff staff)
 {
     return(WorkingTimeRepository.GetInstance().GetAllByStaff(staff));
 }