public EmployeePersonalInfoCommand(Mapper mapper, EmployeeSystemDbContext context)
 {
     this.context = context;
 }
Example #2
0
 public ManagerInfoCommand(Mapper mapper, EmployeeSystemDbContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }
 public SetManagerCommand(EmployeeSystemDbContext context)
 {
     this.context = context;
 }
Example #4
0
 public ListEmployeesOlderThanCommand(Mapper mapper, EmployeeSystemDbContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }
 public AddEmployeeCommand(Mapper mapper, EmployeeSystemDbContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }
 public SetBirthdayCommand(EmployeeSystemDbContext context)
 {
     this.context = context;
 }
 public SetAddressCommand(EmployeeSystemDbContext context)
 {
     this.context = context;
 }