Ejemplo n.º 1
0
 public List <T_Suppliers> getAllSupplier()
 {
     try
     {
         sh = new SupplierHelper();
         return(sh.getSupplierList());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 2
0
 public List <T_Suppliers> getSupplierList(string spno, string spname)
 {
     sh = new SupplierHelper();
     return(sh.getSupplierList(spno, spname));
 }