Пример #1
0
 public SetAddressCommand(Mapper mapper, EmployeesMappingContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
Пример #2
0
 public SetManagerCommand(EmployeesMappingContext context)
 {
     this.context = context;
 }
 public EmployeeService(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #4
0
 public SetBirthdayCommand(Mapper mapper, EmployeesMappingContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
Пример #5
0
 public ManagerInfoCommand(Mapper mapper, EmployeesMappingContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
 public ManagerController(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #7
0
 public ListEmployeesOlderThanCommand(Mapper mapper, EmployeesMappingContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
Пример #8
0
 public EmployeePersonalInfoCommand(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #9
0
 public AddEmployeeCommand(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #10
0
 public EmployeePersonalInfoCommand(Mapper mapper, EmployeesMappingContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
Пример #11
0
 public SetBirthdayCommand(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #12
0
 public ListEmployeesOlderThanCommand(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #13
0
 public ManagerInfoCommand(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #14
0
 public DbInitializerService(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #15
0
 public SetAddressCommand(EmployeesMappingContext context)
 {
     this.context = context;
 }
Пример #16
0
 public EmployeeController(EmployeesMappingContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }