Ejemplo n.º 1
0
 public CategoriesQueryHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
 public DeleteTransactionCommandHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
 public DeleteProductCommandHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 4
0
 public CreateOrderCommandHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 5
0
 public CustomerIdByCredentialQueryHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 6
0
 public ProductsQueryHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 7
0
 public CreateCategoryCommandHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 8
0
 public OredersQueryHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
 protected DatabaseQueryHandlerBase(ISiriusDbContext dbContext)
 {
     DbContext = dbContext;
 }
Ejemplo n.º 10
0
 public TransactionsQueryHandler(ISiriusDbContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 11
0
 protected DatabaseCommandHandlerBase(ISiriusDbContext dbContext)
 {
     DbContext = dbContext;
 }