public PostRepository(IApiDbContext appDbContext,
                       ILogger <PostRepository> logger)
 {
     _appDbContext = appDbContext;
     _logger       = logger;
 }
 public UserRepository(IApiDbContext appDbContext,
                       ILoggerFactory loggerFactory)
 {
     _appDbContext = appDbContext;
     _logger       = loggerFactory.CreateLogger("UserDatabase");
 }
 public DefaultSalespersonService(IApiDbContext context)
 {
     _context = context;
 }
 public RelationRepository(IApiDbContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
 public SampleRepository(IApiDbContext context) : base(context)
 {
     this.context = context;
 }
Beispiel #6
0
 public RemoveProductCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
Beispiel #7
0
 public GetPlayerBattlegroupsHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
Beispiel #8
0
 public DefaultOrderItemService(IApiDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public Configuration(IApiDbContext context, IProductAPIService service)
 {
     _context = context;
     _service = service;
 }
Beispiel #10
0
 public MessageRepository(IApiDbContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
 public NotificationRepository(IApiDbContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
Beispiel #12
0
 public GetReplayHandler(IApiDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
Beispiel #13
0
 public DefaultProductService(IApiDbContext context)
 {
     _context = context;
 }
 public GetCartQueryHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
Beispiel #15
0
 public ClearCartCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
Beispiel #16
0
 public DeleteReplayHandler(IApiDbContext apiDbContext, IBlobStorage blobStorage)
 {
     _apiDbContext = apiDbContext;
     _blobStorage  = blobStorage;
 }
 public DefaultOrderService(IApiDbContext context)
 {
     _context = context;
     //_context.Configuration.ProxyCreationEnabled = false;
 }
 public RepositoryBase(IApiDbContext context)
 {
     this.context = context;
 }
Beispiel #19
0
 public GetPlayerHandler(IApiDbContext apiDbContext, IMapper mapper)
 {
     _apiDbContext = apiDbContext;
     _mapper       = mapper;
 }
Beispiel #20
0
 public CreateReplayHandler(IApiDbContext apiDbContext, IBlobStorage blobStorage, IMapper mapper)
 {
     _apiDbContext = apiDbContext;
     _blobStorage  = blobStorage;
     _mapper       = mapper;
 }
Beispiel #21
0
 public AddProductCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
Beispiel #22
0
 public GetReplayListHandler(IApiDbContext dbContext, IMapper mapper, IQueryBuilder queryBuilder)
 {
     _dbContext    = dbContext;
     _mapper       = mapper;
     _queryBuilder = queryBuilder;
 }
Beispiel #23
0
 public GetMapListHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
Beispiel #24
0
 public LogController(IApiDbContext db, MapperConfiguration mapperConfig, IMapper mapper)
 {
     _db           = db;
     _mapperConfig = mapperConfig;
     _mapper       = mapper;
 }
Beispiel #25
0
 public DefaultCustomerService(IApiDbContext context)
 {
     _context = context;
 }
Beispiel #26
0
 public CreateCartCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }