Example #1
0
 public virtual void Update(string name, string phone, string address, string postalCode, Kelurahan id_Kelurahan, Kecamatan id_Kecamatan, DateTimeOffset updateDate)
 {
     this.Name       = name;
     this.Phone      = phone;
     this.Address    = address;
     this.PostalCode = postalCode;
     this.Kelurahan  = id_Kelurahan;
     this.Kecamatan  = id_Kecamatan;
     this.UpdateDate = updateDate;
 }
Example #2
0
 public Supplier(string name, string phone, string address, string postalCode, Kelurahan id_Kelurahan, Kecamatan id_Kecamatan, DateTimeOffset createDate)
 {
     this.Name       = name;
     this.Phone      = phone;
     this.Address    = address;
     this.PostalCode = postalCode;
     this.Kelurahan  = id_Kelurahan;
     this.Kecamatan  = id_Kecamatan;
     this.CreateDate = createDate;
 }