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