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