Ejemplo n.º 1
0
 public AddHourlyEmployee(AddHourlyEmployeeRequest r) : base(r.EmpId, r.Name, r.Address)
 {
     hourlyRate = r.HourlyRate;
 }
Ejemplo n.º 2
0
        public override Transaction MakeAddHourlyEmployee(Request r)
        {
            AddHourlyEmployeeRequest req = r as AddHourlyEmployeeRequest;

            return(new AddHourlyEmployee(req));
        }