Example #1
0
 public UpdateBookAdminCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
 public CreateUserCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
Example #3
0
 public SearchQueryHandler(IVKDbContext dbContext)
 {
     _context = dbContext;
 }
Example #4
0
 public DeleteChapterAdminCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
Example #5
0
 public AuthorQueryHandler(IVKDbContext dbContext, IMapper _Mapper)
 {
     _context = dbContext;
     _mapper  = _Mapper;
 }
Example #6
0
 public UpdateUserCommandHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetUserQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #8
0
 public UpdateChapterAdminCommanHandler(IVKDbContext context)
 {
     _context = context;
 }
Example #9
0
 public UserLoginQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetCategoryListQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ChapterAdminViewModelQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #12
0
 public GenreAdminQueryHandler(IVKDbContext dbContext, IMapper _Mapper)
 {
     _context = dbContext;
     _mapper  = _Mapper;
 }
Example #13
0
 public HomeQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public EditAuthorCommandHandler(IVKDbContext Context)
 {
     _context = Context;
 }
 public DeleteGenreCommandHandler(IVKDbContext Context)
 {
     _context = Context;
 }
Example #16
0
 public CategoryAdminByIdQueriesHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #17
0
 public HomeAdminViewModelQueryHandler(IVKDbContext dbContext)
 {
     _context = dbContext;
 }
 public ChapterAdminQueryHandler(IVKDbContext context)
 {
     _context = context;
 }
Example #19
0
 public getBookAdminQueryByIdHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #20
0
 public EditGenreCommandhandler(IVKDbContext Context)
 {
     _context = Context;
 }
 public CategoryAdminCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
Example #22
0
 public CreateAuthorCommandHandler(IVKDbContext Context)
 {
     _context = Context;
 }
Example #23
0
 public GetGenreListQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetGenreQueryhandler(IVKDbContext Context, IMapper Mapper)
 {
     _context = Context;
     _mapper  = Mapper;
 }