示例#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;
 }
 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;
 }