Пример #1
0
 public SellTradeRepository(PicassoDbContext context)
 {
     this.context = context;
 }
Пример #2
0
 public ProviderRepository(PicassoDbContext context, IObjectMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Пример #3
0
 public ValuationRepository(PicassoDbContext context, IObjectMapper mapper, ILogger <ValuationRepository> logger)
 {
     this.context = context;
     this.mapper  = mapper;
     _logger      = logger;
 }
Пример #4
0
 public EndOfDayPriceRepository(PicassoDbContext context, IObjectMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Пример #5
0
 public ApiRepository(PicassoDbContext context)
 {
     this.context = context;
 }
Пример #6
0
 public EndOfDayLogRepository(PicassoDbContext context)
 {
     this.context = context;
 }
Пример #7
0
 public ListingRepository(PicassoDbContext context, IObjectMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Пример #8
0
 public CurrencyRateRepository(PicassoDbContext context, IObjectMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Пример #9
0
 public ValuationLogRepository(PicassoDbContext context)
 {
     this.context = context;
 }
Пример #10
0
 public CurrencyRatesLogRepository(PicassoDbContext context)
 {
     this.context = context;
 }
Пример #11
0
 public TargetPriceRepostiory(PicassoDbContext context, IObjectMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }