Example #1
0
 public void Delete(EmployeeDayoff data)
 {
     EmployeeDayoffDao.Delete(data);
 }
Example #2
0
 public void Update(EmployeeDayoff data)
 {
     EmployeeDayoffDao.Update(data);
 }
Example #3
0
 public EmployeeDayoff Add(EmployeeDayoff data)
 {
     EmployeeDayoffDao.Add(data);
     return data;
 }
Example #4
0
        protected bool Equals(EmployeeDayoff entity)
        {
            if (entity == null) return false;
            if (!base.Equals(entity)) return false;

            return true;
        }