Answered step by step
Verified Expert Solution
Question
1 Approved Answer
CREATE A EMPLOYEE CLASS GUI IN C# WINDOWS FORM USING INSTRUCTIONS PICTURED BELOW THAT HAS A FORM THAT LETS THE USER ENTER THE INFORMATION. IE
CREATE A EMPLOYEE CLASS GUI IN C# WINDOWS FORM USING INSTRUCTIONS PICTURED BELOW THAT HAS A FORM THAT LETS THE USER ENTER THE INFORMATION. IE NAME, ID NUMBER, DEPARTMENT, POSITION.
Your program assignment Application . Write a class named Employee that has the following properties: Name-The Name property holds the employee's name. Id Number -The IdNumber property holds the employee's ID number. . Department- The Department property holds the name of the department in which the employee works. Position-The Position property holds the employee's job title. The class should have the following overloaded constructors: A constructor that accepts the following values as arguments and assigns them to the appropriate properties: employee's name, employee's ID number, department, and position. A constructor that accepts the following values as arguments and assigns them to the appropriate properties: employee's name and ID number. The Department and Position properties should be assigned an empty string(""). . A parameterless constructor that assigns empty strings to the Name, Department, and Position properties, and 0 to the IdNumber property. In an application, create three Employee objects to hold the following data: Name ID Number Department Position Susan Meyers 47899 Accounting Vice President Mark Jones 39119 IT Programmer Joy Rogers 81774 Manufacturing Engineer The application should store this data in the three objects and display the data for each employee on the screen. Now here is the real challenge. You have the books example, but I want you to change it so that you have a from for the user to enter the data for the Employee instead of coding it into the programs code. Also be able to update the information so you will save the data that is entered for each employee. You will be able to take the data entered and display it in the list box. Share ideas for the project with other class members if you would like and see what you can come up with. Possible Design
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started