public AccountLoader(AuthService authService, TrueLayerAPI trueLayerApi, LiteDBDatastore dataStore)
     : base(authService, trueLayerApi, dataStore)
 {
 }
 public CreditCardTransactionLoader(AuthService authService, TrueLayerAPI trueLayerApi, LiteDBDatastore dataStore)
     : base(authService, trueLayerApi, dataStore)
 {
 }
示例#3
0
 public Loader(AuthService authService, TrueLayerAPI trueLayerApi, LiteDBDatastore dataStore)
 {
     _authService  = authService;
     _trueLayerApi = trueLayerApi;
     _dataStore    = dataStore;
 }