コード例 #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;
 }