using System.Collections.Generic;
public static void Main()
Console.WriteLine("Welcome to a Together - Estamos Juntos inteview!");
Address = "Rua das Oliveiras, 100"
Person p = new Person("Alfonso", h);
Console.WriteLine($"{p.Name} lives in {h.Address}");
Console.WriteLine($"{p.ToString()}");
public String Address { get; set; }
public String Name { get; set;}
public House House { get; set; }
public Person(String sName, House hHouse = null)
public override string ToString()
return $"{Name} lives in {House?.Address}";