Exemplo n.º 1
0
 public PriceImportGenerator(IServiceProvider serviceProvider, IOptionsMonitor <CommodityPriceImportGeneratorSettings> settings, GnuCashContext context)
 {
     _settings = settings.CurrentValue ?? throw new ArgumentNullException(nameof(settings));
     _settings.Bindings ??= new NamespaceBinding[] { };
     _context         = context;
     _serviceProvider = serviceProvider;
 }
Exemplo n.º 2
0
 public GnuCashContextQueryBase(GnuCashContext context)
 {
     Context = context;
 }
 public TransferAccountPredictionDataQuery(GnuCashContext context) : base(context)
 {
 }
Exemplo n.º 4
0
 public TransactionImportFileDataGenerator(IOperationTransferAccountPredictor transferAccountPredictor, GnuCashContext context)
 {
     _transferAccountPredictor = transferAccountPredictor;
     _context = context;
 }