public GetAllCategoriesQueryHandler(IBlogAppCoreDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CreatePostCommandHandler(IBlogAppCoreDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetPostDetailQueryHandler(IBlogAppCoreDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetTagListQueryHandler(IBlogAppCoreDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #5
0
 public UpdateCategoryCommandHandler(IBlogAppCoreDbContext context)
 {
     _context = context;
 }
 public DeleteTagCommandHandler(IBlogAppCoreDbContext context)
 {
     _context = context;
 }
Exemple #7
0
 public UpdatePostCommandHandler(IBlogAppCoreDbContext context)
 {
     _context = context;
 }
Exemple #8
0
 public GetPostsByCategoryQueryHandler(IBlogAppCoreDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }