Example #1
0
 public AttachmentQueryHandler(
     INoteMeMapper mapper,
     NoteMeContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Example #2
0
 public NoteQueryHandler(
     INoteMeMapper mapper,
     NoteMeContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
 public GenericCommandHandler(
     ICacheService cacheService,
     INoteMeMapper mapper,
     NoteMeContext context)
 {
     _cacheService = cacheService;
     _mapper       = mapper;
     _context      = context;
 }
Example #4
0
 public UserCommandHandler(
     ICacheService memoryCacheService,
     ISecurityService encrypterService,
     INoteMeMapper mapper,
     NoteMeContext context)
 {
     _memoryCacheService = memoryCacheService;
     _encrypterService   = encrypterService;
     _mapper             = mapper;
     _context            = context;
 }
 public NoteCommandHandler(
     IGenericCommandHandler genericCommandHandler,
     ICacheService cacheService,
     INoteMeMapper mapper,
     NoteMeContext noteMeContext)
 {
     _genericCommandHandler = genericCommandHandler;
     _cacheService          = cacheService;
     _mapper        = mapper;
     _noteMeContext = noteMeContext;
 }
Example #6
0
 public AuthCommandHandler(
     ISecurityService securityService,
     ICacheService cacheService,
     INoteMeMapper mapper,
     NoteMeContext context)
 {
     _securityService = securityService;
     _cacheService    = cacheService;
     _mapper          = mapper;
     _context         = context;
 }