public RegisterUserCommandHandler(TechAssessmentDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public AddEntryToPhonebookCommandHandler(TechAssessmentDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #3
0
 public GetPhoneBooksListQueryHandler(TechAssessmentDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public SearchEntryQueryHandler(TechAssessmentDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CheckUserRegistrationQueryHandler(TechAssessmentDbContext context, IMapper mapper, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }