public ProductsController(ISimpleDbContext db)
 {
     _db = db;
 }
Exemplo n.º 2
0
 public SampleDataSeeder(ISimpleDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public SeedSampleDataCommandHandler(ISimpleDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public DeleteTopicCommandHandler(ISimpleDbContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public UpsertCategoryCommandHandler(ISimpleDbContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public GetTopicsListQueryHandler(ISimpleDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 7
0
 public SampleLoginHandler(ISimpleDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public GetCategoryDetailQueryHandler(ISimpleDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 9
0
 public UserAdminController(IOptions <AuthConfigSection> authConfig, ISimpleDbContext dbContext)
 {
     _allProviders = authConfig.Value.Providers.Select(p => p.Name).ToList();
     _dbContext    = dbContext;
 }
 public CustomersController(ISimpleDbContext db)
 {
     _db = db;
 }
 public GetCategoriesListQueryTests(QueryTestFixture fixture)
 {
     _context = fixture.Context;
     _mapper  = fixture.Mapper;
 }
Exemplo n.º 12
0
 public TicketsController(ISimpleDbContext db)
 {
     _db = db;
 }
Exemplo n.º 13
0
 public HomeController(ISimpleDbContext db)
 {
     _db = db;
     LogManager.ThrowExceptions = true;
     Logger = LogManager.GetCurrentClassLogger();
 }
 public DeleteCategoryCommandHandler(ISimpleDbContext context)
 {
     _context = context;
 }
Exemplo n.º 15
0
 public DeleteContentCommandHandler(ISimpleDbContext context)
 {
     _context = context;
 }
Exemplo n.º 16
0
 public UpsertTopicCommandHandler(ISimpleDbContext context)
 {
     _context = context;
 }