public DataSet GetTranRealTimeWindowsInfo(DateTime currentDate) { using(MorningCheckInfoDataAccess da = new MorningCheckInfoDataAccess()) { return da.GetTranRealTimeWindowsInfo(currentDate); } }
public DataSet GetTeaRealTimeWindowsInfo(out int sumTotal,DateTime currentDate) { using(MorningCheckInfoDataAccess da = new MorningCheckInfoDataAccess()) { return da.GetTeaRealTimeWindowsInfo(out sumTotal,currentDate); } }
public int InsertMorningCheckInfo(DataFrame dataFrame) { int rowsAffected = 0; using(MorningCheckInfoDataAccess morningCheckInfoDataAccess = new MorningCheckInfoDataAccess()) { rowsAffected = morningCheckInfoDataAccess.InsertMorningCheckInfo(dataFrame); } return rowsAffected; }