Exemple #1
0
 public bool IsAprovedOverTime(DateModel model)
 {
     try
     {
         return(OverTimeDetailBusiness.IsApprovedOverTime(model.year, model.month));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #2
0
 public void ApproveOverTime(DateModel model)
 {
     try
     {
         OverTimeDetailBusiness.ApproveOverTime(model.year, model.month);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }