Example #1
0
 public PropertyDetailedModel(PropertyDetailedDto dto)
 {
     Property = new PropertyModel(dto);
     Address = new AddressModel(dto);
     Tenants = dto.Tenants;
 }
Example #2
0
 public PropertyDetailedModel(PropertyBasicDetailsDto dto)
 {
     Property = new PropertyModel(dto);
     Address = new AddressModel(dto);
 }