Example #1
0
 public void AddNeighbor(Neighbor neighbor)
 {
     floorNeighbors.Add(neighbor);
 }
Example #2
0
 public void PrintInfoNeighbor(Neighbor neighbor)
 {
     Console.WriteLine($"In this flat lives {neighbor.FullName}. His (her) number phone is " +
                       $"{neighbor.PhoneNumber}.");
 }