public Supplier findSupplier(string supId)
 {
     SupplierEnt supEnt = new SupplierEnt();
     Supplier sup = new Supplier();
     sup.Supplier_ID = supId;
     return supEnt.getSupplierForMob(sup);
 }
 public List<Supplier> findSupplier(string supId)
 {
     SupplierEnt supEnt = new SupplierEnt();
     Supplier sup = new Supplier();
     sup.Supplier_ID = supId;
     return supEnt.getSupplier(sup);
 }
 public PurchaseOrderController()
 {
     purchaseOrderEnt = new PurchaseOrderEnt();
     purchaseOrderDetailEnt = new PurchaseOrderDetailEnt();
     stockCardEnt = new StockCardEnt();
     supplierEnt = new SupplierEnt();
     dALUtilities = new DALUtilities();
 }
 public List<Supplier> getAllSupplier()
 {
     SupplierEnt supE = new SupplierEnt();
     return supE.getAllSupplier();
 }