Example #1
0
 public void UpdateManRestDay(ManRestDay updManRestDay)
 {
     try
     {
         _manRestDayDal.Update(updManRestDay);
     }
     catch (RepositoryException ex)
     {
         throw ex;
     }
 }
Example #2
0
 public void DelManRestDay(ManRestDay delManRestDay)
 {
     try
     {
         _manRestDayDal.Delete(delManRestDay);
     }
     catch (RepositoryException ex)
     {
         throw ex;
     }
 }
Example #3
0
 public ManRestDay AddManRestDay(ManRestDay newManRestDay)
 {
     try
     {
         _manRestDayDal.Add(newManRestDay);
         return(newManRestDay);
     }
     catch (RepositoryException ex)
     {
         throw ex;
     }
 }