C# windows application form Create an Employee class that has properties for the
ID: 3854455 • Letter: C
Question
C# windows application form Create an Employee class that has properties for the following data: Employee name Employee number Next, create a class named ProductionWorker that is derived from the Employee class. The ProductionWorker class should have properties to hold the following data: Shift number (an integer, such as 1, 2, or 3) Hourly pay rate The workday is divided into two shifts: day and night. The Shift property will hold an integer value representing the shift that the employee works. The day shift is shift 1 and the night shift is shift 2. Create an application that creates an object of the ProductionWorker class and lets the user enter data for each of the object's properties. Retrieve the object's properties and display their values.Explanation / Answer
class Employee {
String employeeName;
int employeeNumber;
public String getEmployeeName() {
return employeeName;
}
public void setEmployeeName(String employeeName) {
this.employeeName = employeeName;
}
public int getEmployeeNumber() {
return employeeNumber;
}
public void setEmployeeNumber(int employeeNumber) {
this.employeeNumber = employeeNumber;
}
}
class ProductWorker extends Employee{
int shiftNumber;
float hourlyPayRate;
public int getShiftNumber() {
return shiftNumber;
}
public void setShiftNumber(int shiftNumber) {
this.shiftNumber = shiftNumber;
}
public float getHourlyPayRate() {
return hourlyPayRate;
}
public void setHourlyPayRate(float hourlyPayRate) {
this.hourlyPayRate = hourlyPayRate;
}
}
public class Test{
public static void main(String[] args) {
ProductWorker worker=new ProductWorker();
//setting values to worker object using setter methods
worker.setEmployeeName("srikanth");
worker.setEmployeeNumber(101);
worker.setShiftNumber(1);
worker.setHourlyPayRate(1.5f);
//getting worker details using getter method methods
String name=worker.getEmployeeName();
int number= worker.getEmployeeNumber();
int shiftNumber=worker.getShiftNumber();
float rate=worker.getHourlyPayRate();
System.out.println(name+" "+number+" "+shiftNumber+" "+rate);
}
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.