public static bool IsDebit(this BankStatementLine bsl)
 {
     return(!IsCredit(bsl));
 }
 public static bool IsCredit(this BankStatementLine bsl)
 {
     return(bsl.DebitAmount is null);
 }