public PaycheckController(IPaycheckHandler handler)
 {
     _handler = handler;
 }
 public EmployeeController(IEmployeeContext context, IPaycheckHandler handler)
 {
     _context = context;
     _handler = handler;
 }