public CustomList <ShiftRoster> ProcessShiftRoster(string fromDate, string toDate, string tableName)
 {
     return(ShiftRoster.ProcessShiftRoster(fromDate, toDate, tableName));
 }
 public CustomList <ShiftRoster> DeleteExistingShiftRoster(string fromDate, string toDate, string tableName)
 {
     return(ShiftRoster.DeleteExistingShiftRoster(fromDate, toDate, tableName));
 }
 public CustomList <ShiftRoster> GetAllProcessedShiftRoster(string fromDate, string toDate)
 {
     return(ShiftRoster.GetAllProcessedShiftRoster(fromDate, toDate));
 }