public UpdateFactorsCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 public AddOrUpdateLocalizedStringsCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 protected SqlQueryHandlerBase(IProductPriceContext dbContext) : base(dbContext)
 {
 }
Example #4
0
 public RemoveImageUrlCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 public LocalizedValuesQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
Example #6
0
 public EnvironmentsQueryHandler(IProductPriceContext dbContext, IMapper mapper) : base(dbContext)
 {
     _mapper = mapper;
 }
 public GetCalculatedPriceQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 public CustomPropertiesQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 public GetAllPriceQueryHandler(IProductPriceContext dbContext, IMapper mapper) : base(dbContext)
 {
     _mapper = mapper;
 }
 public UserIdByCredentialsQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
Example #11
0
 public CreateProductCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 public LocalizationObjectQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
Example #13
0
 public RegisterNewUserCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
Example #14
0
 public AddLocalizedStringCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 public AddProductPriceCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 protected DatabaseQueryHandlerBase(IProductPriceContext dbContext)
 {
     DbContext = dbContext;
 }
 public RemoveColorCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
Example #18
0
 public DeleteCustomPropertyCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
Example #19
0
 public DeletePriceCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
 public BoxingsQueryHandler(IProductPriceContext dbContext, IMapper mapper) : base(dbContext)
 {
     _mapper = mapper;
 }
Example #21
0
 public ProductsWithPricesQueryHandler(IProductPriceContext dbContext, IQueryBus queryBus) : base(dbContext)
 {
     _queryBus = queryBus;
 }