Ejemplo n.º 1
0
 public Customer(int idcustomer, string nif, string name, string surname, string address, int phone,
                 string email, int deleted, int zipcode, string city, string state, string region)
 {
     this.dao        = CustomersDAO.getInstance();
     this.Idcustomer = idcustomer;
     this.nif        = nif;
     this.Name       = name;
     this.Surname    = surname;
     this.Address    = address;
     this.Phone      = phone;
     this.Email      = email;
     this.Deleted    = deleted;
     this.Zipcode    = zipcode;
     this.City       = city;
     this.State      = state;
     this.Region     = region;
 }
Ejemplo n.º 2
0
 public Customer()
 {
     this.dao = CustomersDAO.getInstance();
 }