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