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

			return rowsAffected;
		}