コード例 #1
0
 internal DbStorageAccount(DbStorageStamp stamp, Account account)
 {
     this.StorageManager      = stamp.StorageManager;
     this._account            = account;
     this.OperationStatus     = stamp.OperationStatus;
     this._accountPermissions = new AccountPermissions?(AccountPermissions.Full);
     this.Timeout             = this.DEFAULTTIMEOUT;
 }
コード例 #2
0
 internal DbStorageAccount(DbStorageStamp stamp, string accountName) : this(stamp, new Account()
 {
     Name = accountName
 })
 {
 }