Ejemplo n.º 1
0
 public AddCommissionedEmployee(AddCommissionedEmployeeRequest r) : base(r.EmpId, r.Name, r.Address)
 {
     hourlyRate = r.HourlyRate;
     salary     = r.Salary;
 }
Ejemplo n.º 2
0
        public override Transaction MakeAddCommisionedEmployee(Request r)
        {
            AddCommissionedEmployeeRequest req = r as AddCommissionedEmployeeRequest;

            return(new AddCommissionedEmployee(req));
        }