Package DBLayer

Examples of DBLayer.DBSupplier.searchSupplierName()


    }
   
    public Supplier searchByName(String Name)
    {
        IFDBSupplier DBSupplier = new DBSupplier();
        return DBSupplier.searchSupplierName(Name, true);
    }
    
   
      public int updateSupplier(String Name, String Address, String Country, String PhoneNumber , String Email)
      {
View Full Code Here


   
      public int updateSupplier(String Name, String Address, String Country, String PhoneNumber , String Email)
      {
          IFDBSupplier dbSupplier = new DBSupplier();
          Supplier sup = new Supplier();
          String name1 = dbSupplier.searchSupplierName(Name, false).getName();
        
          sup.setName(name1);
          sup.setAddress(Address);
          sup.setCountry(Country);
          sup.setPhoneNumber(PhoneNumber);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.