Example #1
0
 public DataTable GetPartNameByPartIDDT(int _custid, string partid)
 {
     return(DBPOMonitoring.GetPartNameByPartID(_custid, partid).Tables[0]);
 }
Example #2
0
 public DataTable GetAllCustomersDT()
 {
     return(DBPOMonitoring.GetCustomers().Tables[0]);
 }
Example #3
0
 public DataTable GetPartsByCustomerDT(int _custid)
 {
     return(DBPOMonitoring.GetPartsByCustomer(_custid).Tables[0]);
 }
Example #4
0
 public DataTable GetPOMonitoringThisYearDT(string partcode)
 {
     return(DBPOMonitoring.GetPOMonitoringThisYear(partcode).Tables[0]);
 }
Example #5
0
 public DataTable GetPOMonitoringByDateRequiredDT(string partcode, DateTime datereq)
 {
     return(DBPOMonitoring.GetPOMonitoringByDateRequired(partcode, datereq).Tables[0]);
 }
Example #6
0
 public DataTable GetPOMonitoringByPONoDT(string partcode, string pono)
 {
     return(DBPOMonitoring.GetPOMonitoringByPONo(partcode, pono).Tables[0]);
 }
Example #7
0
 public DataTable GetPOMonitoringByYearDT(string partcode, int year)
 {
     return(DBPOMonitoring.GetPOMonitoringByYear(partcode, year).Tables[0]);
 }
Example #8
0
 public Boolean SavePOMonitoring()
 {
     return(DBPOMonitoring.SavePOMonitoring(this));
 }