コード例 #1
0
 public DisplayableAccountStatement(AccountStatement x)
 {
     SerialNumber = x.SerialNumber;
     Description  = x.Description;
     Date         = x.Date;
     Credit       = x.GetCreditValueOrNull();
     Debit        = x.GetDebitValueOrNull();
     Balance      = x.RunningTotaledValue;
 }