static void CreditAdd() { string guid = InputString("GUID:", _LastAccountGuid, true); if (!String.IsNullOrEmpty(guid)) { decimal amount = InputDecimal("Amount:", 1m, true, true); string notes = InputString("Notes:", null, true); string summarizedBy = InputString("Summarized By:", null, true); bool isCommitted = InputBoolean("Already Committed", false); string entryGuid = _Ledger.AddCredit(guid, amount, notes, summarizedBy, isCommitted); Console.WriteLine(entryGuid); } }