Beispiel #1
0
 public DataSet GetScheduleRecords(ContextInfo contextInfo, List<MESParameterInfo> lstParameters)
 {
     contextInfo.Action = MES_ActionType.Query;
     ScheduleBll bll = new ScheduleBll(contextInfo);
     bll.CallAccessControl();
     DataSet rs = bll.GetSelectedRecords<tinpschedule>(lstParameters);
     GC.Collect();
     return rs;
 }
Beispiel #2
0
 public DataSet GetDailySchedule(ContextInfo contextInfo, string startdate, string enddate)
 {
     contextInfo.Action = MES_ActionType.Update;
     ScheduleBll bll = new ScheduleBll(contextInfo);
     bll.CallAccessControl();
     GC.Collect();
     return bll.GetDailySchedule(startdate, enddate);
 }
Beispiel #3
0
 public List<tinpschedule> GetScheduleList(ContextInfo contextInfo, List<MESParameterInfo> lstParameters)
 {
     contextInfo.Action = MES_ActionType.Query;
     ScheduleBll bll = new ScheduleBll(contextInfo);
     bll.CallAccessControl();
     List<tinpschedule> rs = bll.GetSelectedObjects<tinpschedule>(lstParameters);
     GC.Collect();
     return rs;
 }
Beispiel #4
0
 public void DoUpdateSchedule(ContextInfo contextInfo, string yearmonth, List<tinpschedule> lstSchedule)
 {
     contextInfo.Action = MES_ActionType.Update;
     ScheduleBll bll = new ScheduleBll(contextInfo);
     bll.CallAccessControl();
     bll.DoUpdateSchedule(yearmonth, lstSchedule);
     GC.Collect();
 }