Correct Answer: class Employee : IPerson { private String str; public String FirstName { get { return str; } set { str = value; } } }