Пример #1
0
 public UpdateBookAdminCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
 public CreateUserCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
Пример #3
0
 public SearchQueryHandler(IVKDbContext dbContext)
 {
     _context = dbContext;
 }
Пример #4
0
 public DeleteChapterAdminCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
Пример #5
0
 public AuthorQueryHandler(IVKDbContext dbContext, IMapper _Mapper)
 {
     _context = dbContext;
     _mapper  = _Mapper;
 }
Пример #6
0
 public UpdateUserCommandHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #7
0
 public GetUserQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #8
0
 public UpdateChapterAdminCommanHandler(IVKDbContext context)
 {
     _context = context;
 }
Пример #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;
 }
Пример #12
0
 public GenreAdminQueryHandler(IVKDbContext dbContext, IMapper _Mapper)
 {
     _context = dbContext;
     _mapper  = _Mapper;
 }
Пример #13
0
 public HomeQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public EditAuthorCommandHandler(IVKDbContext Context)
 {
     _context = Context;
 }
 public DeleteGenreCommandHandler(IVKDbContext Context)
 {
     _context = Context;
 }
Пример #16
0
 public CategoryAdminByIdQueriesHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #17
0
 public HomeAdminViewModelQueryHandler(IVKDbContext dbContext)
 {
     _context = dbContext;
 }
 public ChapterAdminQueryHandler(IVKDbContext context)
 {
     _context = context;
 }
Пример #19
0
 public getBookAdminQueryByIdHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #20
0
 public EditGenreCommandhandler(IVKDbContext Context)
 {
     _context = Context;
 }
 public CategoryAdminCommandHandler(IVKDbContext context)
 {
     _context = context;
 }
Пример #22
0
 public CreateAuthorCommandHandler(IVKDbContext Context)
 {
     _context = Context;
 }
Пример #23
0
 public GetGenreListQueryHandler(IVKDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetGenreQueryhandler(IVKDbContext Context, IMapper Mapper)
 {
     _context = Context;
     _mapper  = Mapper;
 }