コード例 #1
0
 public PaycheckController(IPaycheckHandler handler)
 {
     _handler = handler;
 }
コード例 #2
0
 public EmployeeController(IEmployeeContext context, IPaycheckHandler handler)
 {
     _context = context;
     _handler = handler;
 }