예제 #1
0
 public FiatWallet(ILogger logger, FiatWalletContext db, string type, BankAccount account)
 {
     this.logger  = logger;
     this.db      = db;
     this.type    = type;
     this.account = account;
     CheckType();
 }
예제 #2
0
 public FastFiatWallet(ILogger logger, FiatWalletContext db, string type, BankAccount account) : base(logger, db, type, account)
 {
     System.Diagnostics.Debug.Assert(db.LazyLoading == false);
 }