예제 #1
0
 public virtual AccountStored SetProperties(AccountIndexEntry entry = default(AccountIndexEntry))
 {
     AccountIndexEntry localEntry = entry;
     if ((entry == default(AccountIndexEntry)))
     {
         localEntry = this.Entry;
     }
     return new AccountStored(localEntry);
 }
예제 #2
0
 public virtual AccountStorageFailed SetProperties(AccountIndexEntry entry = default(AccountIndexEntry), Exception reason = default(Exception))
 {
     AccountIndexEntry localEntry = entry;
     if ((entry == default(AccountIndexEntry)))
     {
         localEntry = this.Entry;
     }
     Exception localReason = reason;
     if ((reason == default(Exception)))
     {
         localReason = this.Reason;
     }
     return new AccountStorageFailed(localEntry, localReason);
 }
예제 #3
0
 public AccountIndexEntry Entry { get; private set; }//;
 public AccountDeleted(AccountIndexEntry entry)
 {
     this.Entry = entry;
 }
예제 #4
0
 public Exception Reason { get; private set; }//;
 public AccountStorageFailed(AccountIndexEntry entry, Exception reason = default(Exception))
 {
     this.Entry = entry;
     this.Reason = reason;
 }
예제 #5
0
 public AccountIndexEntry Entry { get; private set; }//;
 public AccountStored(AccountIndexEntry entry)
 {
     this.Entry = entry;
 }
예제 #6
0
 public AccountIndexEntry Entry { get; private set; }//;
 public StoreAccount(AccountIndexEntry entry)
 {
     this.Entry = entry;
 }