예제 #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;
 }