public AddHourlyEmployee(AddHourlyEmployeeRequest r) : base(r.EmpId, r.Name, r.Address) { hourlyRate = r.HourlyRate; }
public override Transaction MakeAddHourlyEmployee(Request r) { AddHourlyEmployeeRequest req = r as AddHourlyEmployeeRequest; return(new AddHourlyEmployee(req)); }