Ejemplo n.º 1
0
 public int GetHolidayCount(DateTime startDate, DateTime endDate, long UserId)
 {
     using (ILeaveHelper helper = new LeaveHelper())
     {
         return(helper.GetHolidayCount(startDate, endDate, UserId));
     }
 }