public House(Street street, string city) { this.street = street; this.city = city; }
public House(Street street, string city) //Кользовательский конструктор { //Инициализация полей класса this.street = street; this.city = city; }