Answered You can hire a professional tutor to get the answer.
Create class called Contract that contains 6 pieces of information as instance variables:
Create class called Contract that contains 6 pieces of information as instance variables: contract signee (datatype string), signee street address (datatype string), signee city(datatype string), signee state (datatype string), date of agreement ( string), type of contract. Contracts can be sale or service.
Your Contract class should contain a constructor that initializes the instance variables. The Contract class should also contain a C# property for each instance variable that provide get and set as per C# standards.
Create second class ContractTest that creates two Contractobjects using the constructor that you developed in the Contractclass. For each object, display : signer, street address, city, state, date of agreement, type of contract.