public static DataTable GetTopTenServiceWorkFromToday()
 {
     return(ServiceWorkDB.GetTopTenServiceWorkFromToday());
 }
 public static ServiceWorkList GetListByDate(DateTime myDate, string startTime)
 {
     return(ServiceWorkDB.GetListByDate(myDate, startTime));
 }
 public static DataTable GetServiceWorkDetailsByID(int serviceWorkID)
 {
     return(ServiceWorkDB.GetServiceWorkDetailsByID(serviceWorkID));
 }
 public static ServiceWorkList GetListByAccountID(int accountID)
 {
     return(ServiceWorkDB.GetListByAccountID(accountID));
 }
 public static int Save(ServiceWork servWork)
 {
     return(ServiceWorkDB.Save(servWork));
 }