コード例 #1
0
 public UpdateFactorsCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #2
0
 public AddOrUpdateLocalizedStringsCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #3
0
 protected SqlQueryHandlerBase(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #4
0
 public RemoveImageUrlCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #5
0
 public LocalizedValuesQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #6
0
 public EnvironmentsQueryHandler(IProductPriceContext dbContext, IMapper mapper) : base(dbContext)
 {
     _mapper = mapper;
 }
コード例 #7
0
 public GetCalculatedPriceQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #8
0
 public CustomPropertiesQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #9
0
 public GetAllPriceQueryHandler(IProductPriceContext dbContext, IMapper mapper) : base(dbContext)
 {
     _mapper = mapper;
 }
コード例 #10
0
 public UserIdByCredentialsQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #11
0
 public CreateProductCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #12
0
 public LocalizationObjectQueryHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #13
0
 public RegisterNewUserCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #14
0
 public AddLocalizedStringCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #15
0
 public AddProductPriceCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #16
0
 protected DatabaseQueryHandlerBase(IProductPriceContext dbContext)
 {
     DbContext = dbContext;
 }
コード例 #17
0
 public RemoveColorCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #18
0
 public DeleteCustomPropertyCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #19
0
 public DeletePriceCommandHandler(IProductPriceContext dbContext) : base(dbContext)
 {
 }
コード例 #20
0
 public BoxingsQueryHandler(IProductPriceContext dbContext, IMapper mapper) : base(dbContext)
 {
     _mapper = mapper;
 }
コード例 #21
0
 public ProductsWithPricesQueryHandler(IProductPriceContext dbContext, IQueryBus queryBus) : base(dbContext)
 {
     _queryBus = queryBus;
 }