Initialization of classes with a constructor in C#

var nokiaPhone = new Phone("Nokia 6610");
var kim = new Employee("Victorya""Kim"
    new Phone("iPhone 5"));

class Phone {
    public string Model { getset; }

    public Phone(string model) {
        Model = model;
    }
}

class Employee {
    public string FirstName { getset; }
    public string LastName { getset; }
    public Phone PersonalPhone { getset; }

    public Employee(string firstName, string lastName, Phone personalPhone) {
        FirstName = firstName;
        LastName = lastName;
        PersonalPhone = personalPhone;
    }
}