I'm trying to create classes in C#... here is the question: Create an Employee class. Items to include as data members are employee number, first name, last name, date of hire, job description, department, and monthly salary. The class is often used to display an alphabetical listing of all employees. Include appropriate constructors and properties. Provide two instance methods that return the full name. The first should return first name, space last name. The second method should return the name in a format that it could be used for sorting (last name, followed by a comma, space, and then first name). Override the ToString ( ) method to return all data members. Create a second class to test your Employee class. My professor is hard to get a hold of and were only online for the time being. Any help or direction would be great. Thanks for your time!
I'm trying to create classes in C#... here is the question:
Create an Employee class. Items to include as data members are employee number, first name, last name, date of hire, job description, department, and monthly salary. The class is often used to display an alphabetical listing of all employees. Include appropriate constructors and properties. Provide two instance methods that return the full name. The first should return first name, space last name. The second method should return the name in a format that it could be used for sorting (last name, followed by a comma, space, and then first name). Override the ToString ( ) method to return all data members. Create a second class to test your Employee class.
My professor is hard to get a hold of and were only online for the time being. Any help or direction would be great. Thanks for your time!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images