Exemplo n.º 1
0
 public DataTable getSupplierID()
 {
     DLSupplier objSupplierDetails = new DLSupplier();
     DataTable dt = objSupplierDetails.getSupplierID();
     return dt;
 }
Exemplo n.º 2
0
 public int deleteSupplier(EntSupplier objent)
 {
     DLSupplier objdl = new DLSupplier();
     int result = objdl.deleteSupplier(objent);
     return result;
 }
Exemplo n.º 3
0
 public DataTable GetID(string CompanyName)
 {
     DLSupplier objDAL = new DLSupplier();
     return objDAL.GetID(CompanyName);
 }
Exemplo n.º 4
0
 public DataTable BindFullGrid()
 {
     DLSupplier objDAL = new DLSupplier();
     return objDAL.BindFullGrid();
 }