Exemple #1
0
 public AddressBM(string street, int number, string apartment, string neighborhood, string comment, CountryBM countryBm)
 {
     this.street       = street;
     this.number       = number;
     this.apartment    = apartment;
     this.neighborhood = neighborhood;
     this.comment      = comment;
     this.country      = countryBm;
 }
Exemple #2
0
 public AddressBM(AddressDTO addressDto, CountryBM countryBm)
 {
     this.id           = addressDto.id;
     this.street       = addressDto.street;
     this.number       = addressDto.number;
     this.apartment    = addressDto.apartment;
     this.neighborhood = addressDto.neighborhood;
     this.comment      = addressDto.comment;
     this.country      = countryBm;
 }
Exemple #3
0
 public AddressBM()
 {
     this.country = new CountryBM();
 }