Esempio n. 1
0
 public static bool IsDebit(this BankStatementLine bsl)
 {
     return(!IsCredit(bsl));
 }
Esempio n. 2
0
 public static bool IsCredit(this BankStatementLine bsl)
 {
     return(bsl.DebitAmount is null);
 }