Exemple #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));
     }
 }
Exemple #2
0
 public IList <DataContracts.Schedulers.DC_Supplier_Schedule> GetSchedule(DataContracts.Schedulers.DC_Supplier_Schedule_RQ RQ)
 {
     using (DataLayer.DL_Schedule obj = new DataLayer.DL_Schedule())
     {
         return(obj.GetSchedule(RQ));
     }
 }
Exemple #3
0
 public bool CheckExistingSupplierSchedule(DataContracts.Schedulers.DC_Supplier_Schedule_RQ RQ)
 {
     using (DataLayer.DL_Schedule obj = new DataLayer.DL_Schedule())
     {
         return(obj.CheckExistingSupplierSchedule(RQ));
     }
 }
Exemple #4
0
 public IList <DataContracts.Schedulers.DC_Supplier_Schedule_RS> GetScheduleBySupplier(DataContracts.Schedulers.DC_Supplier_Schedule_RQ _obj)
 {
     using (BusinessLayer.BL_Schedule obj = new BL_Schedule())
     {
         return(obj.GetScheduleBySupplier(_obj));
     }
 }