コード例 #1
0
 public static bool IsDebit(this BankStatementLine bsl)
 {
     return(!IsCredit(bsl));
 }
コード例 #2
0
 public static bool IsCredit(this BankStatementLine bsl)
 {
     return(bsl.DebitAmount is null);
 }