public EmployeeRepository(
     IExecuters executers,
     IEmployeeCommands employeeCommands
     )
 {
     _executers        = executers;
     _employeeCommands = employeeCommands;
 }
Пример #2
0
 public DBBootstrapper(IDBTableBuilder factory, IEmployeeCommands commands, IEmployeeSource source)
 {
     this.tableBuilder = factory;
     this.commands     = commands;
     this.source       = source;
 }
 public EmployeesController(IEmployeeCommands employeeCommands, IEmployeeQueries employeeQueries)
 {
     this.employeeCommands = employeeCommands;
     this.employeeQueries = employeeQueries;
 }