Example #1
0
 public GetAllProductQueryHandler(DAL.AppContext appContext, IMapper mapper)
 {
     _appContext = appContext;
     _mapper     = mapper;
 }
Example #2
0
 public CategoryCreateCommandHandler(DAL.AppContext appContext, IMapper mapper)
 {
     _appContext = appContext;
     _mapper     = mapper;
 }
Example #3
0
 public HomeController(ILogger <HomeController> logger, IMapper mapper, DAL.AppContext db)
 {
     _db     = db;
     _mapper = mapper;
     _logger = logger;
 }
 public ProductPatchCommandHandler(DAL.AppContext appContext, IMapper mapper)
 {
     _appContext = appContext;
     _mapper     = mapper;
 }
Example #5
0
 public GetAllCategoryQueryHandler(DAL.AppContext appContext, IMapper mapper)
 {
     _appContext = appContext;
     _mapper     = mapper;
 }