public TimeInCheckerQueryHandler(IAndromedaDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public GetTimeInDetailsQueryHandler(IAndromedaDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Пример #3
0
 public VerifyLoginQueryHandler(IAndromedaDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public SaveTimeOutCommandHandler(IAndromedaDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public ChangePasswordCommandHandler(IAndromedaDbContext dbContext, IPasswordHasher password)
 {
     this.dbContext      = dbContext;
     this.passwordHasher = password;
 }
Пример #6
0
 public FindUserQueryHandler(IAndromedaDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public GetAllEmployeeQueryHandler(IAndromedaDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Пример #8
0
 public AddEmployeeCommandHandler(IAndromedaDbContext dbContext, IMediator mediator, IPasswordHasher passwordHasher)
 {
     this.dbContext      = dbContext;
     this.mediator       = mediator;
     this.passwordHasher = passwordHasher;
 }
 public GetIdentifierQueryHandler(IAndromedaDbContext dbContext)
 {
     this.dbContext = dbContext;
 }