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;
 }
示例#6
0
 public RemoveProductCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
示例#7
0
 public GetPlayerBattlegroupsHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
示例#8
0
 public DefaultOrderItemService(IApiDbContext context)
 {
     _context = context;
 }
示例#9
0
 public Configuration(IApiDbContext context, IProductAPIService service)
 {
     _context = context;
     _service = service;
 }
示例#10
0
 public MessageRepository(IApiDbContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
 public NotificationRepository(IApiDbContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
示例#12
0
 public GetReplayHandler(IApiDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
示例#13
0
 public DefaultProductService(IApiDbContext context)
 {
     _context = context;
 }
 public GetCartQueryHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
示例#15
0
 public ClearCartCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
示例#16
0
 public DeleteReplayHandler(IApiDbContext apiDbContext, IBlobStorage blobStorage)
 {
     _apiDbContext = apiDbContext;
     _blobStorage  = blobStorage;
 }
 public DefaultOrderService(IApiDbContext context)
 {
     _context = context;
     //_context.Configuration.ProxyCreationEnabled = false;
 }
示例#18
0
 public RepositoryBase(IApiDbContext context)
 {
     this.context = context;
 }
示例#19
0
 public GetPlayerHandler(IApiDbContext apiDbContext, IMapper mapper)
 {
     _apiDbContext = apiDbContext;
     _mapper       = mapper;
 }
示例#20
0
 public CreateReplayHandler(IApiDbContext apiDbContext, IBlobStorage blobStorage, IMapper mapper)
 {
     _apiDbContext = apiDbContext;
     _blobStorage  = blobStorage;
     _mapper       = mapper;
 }
示例#21
0
 public AddProductCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
示例#22
0
 public GetReplayListHandler(IApiDbContext dbContext, IMapper mapper, IQueryBuilder queryBuilder)
 {
     _dbContext    = dbContext;
     _mapper       = mapper;
     _queryBuilder = queryBuilder;
 }
示例#23
0
 public GetMapListHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }
示例#24
0
 public LogController(IApiDbContext db, MapperConfiguration mapperConfig, IMapper mapper)
 {
     _db           = db;
     _mapperConfig = mapperConfig;
     _mapper       = mapper;
 }
示例#25
0
 public DefaultCustomerService(IApiDbContext context)
 {
     _context = context;
 }
示例#26
0
 public CreateCartCommandHandler(IApiDbContext apiDbContext)
 {
     _apiDbContext = apiDbContext;
 }