Ejemplo n.º 1
0
 public PaycheckController(IPaycheckHandler handler)
 {
     _handler = handler;
 }
Ejemplo n.º 2
0
 public EmployeeController(IEmployeeContext context, IPaycheckHandler handler)
 {
     _context = context;
     _handler = handler;
 }