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

            using (MorningCheckInfoDataAccess morningCheckInfoDataAccess = new MorningCheckInfoDataAccess())
            {
                rowsAffected = morningCheckInfoDataAccess.InsertMorningCheckInfo(dataFrame);
            }

            return(rowsAffected);
        }