示例#1
0
 public bool UpdateSupplierSchedule(DataContracts.Schedulers.DC_Supplier_Schedule_RQ RQ)
 {
     using (DataLayer.DL_Schedule obj = new DataLayer.DL_Schedule())
     {
         return(obj.UpdateSupplierSchedule(RQ));
     }
 }
示例#2
0
 public bool CheckExistingSupplierSchedule(DataContracts.Schedulers.DC_Supplier_Schedule_RQ RQ)
 {
     using (DataLayer.DL_Schedule obj = new DataLayer.DL_Schedule())
     {
         return(obj.CheckExistingSupplierSchedule(RQ));
     }
 }
示例#3
0
 public IList <DataContracts.Schedulers.DC_Supplier_Schedule_RS> GetScheduleBySupplier(DataContracts.Schedulers.DC_Supplier_Schedule_RQ RQ)
 {
     using (DataLayer.DL_Schedule obj = new DataLayer.DL_Schedule())
     {
         return(obj.GetScheduleBySupplier(RQ));
     }
 }
示例#4
0
 public DataContracts.DC_Message AddUpdateSchedule(DataContracts.Schedulers.DC_Supplier_Schedule obj)
 {
     using (DataLayer.DL_Schedule objDL = new DataLayer.DL_Schedule())
     {
         return(objDL.AddUpdateSchedule(obj));
     }
 }