public static void Main()
MobilePhone zeus = new MobilePhone("Zeus", "iPhone", "7");
MobilePhone hades = new MobilePhone("Hades", "iPhone", "6 S");
MobilePhone poseidon = new MobilePhone("Poseidon", "iPhone", "5");
MobilePhone ares = new MobilePhone("Ares", "iPhone", "6");
public MobilePhone (string owner, string make, string model)
public string Owner { get; set; }
public string Make { get; set; }
public string Model { get; set; }
Console.WriteLine("{0} owns a {1} {2}.", this.Owner, this.Make, this.Model);