static void CommandTransactionsAdd(string SenderAddress, string ReceiverAddress, string Amount, string Description)
        {
            Transaction transaction = new Transaction(SenderAddress, ReceiverAddress, Decimal.Parse(Amount), Description);

            blockchainServices.AddTransaction(transaction);
            Console.WriteLine($"  {Amount} from {SenderAddress} to {ReceiverAddress} transaction added to list of pending transactions.");
            Console.WriteLine("");

            if (useNetwork)
            {
                NetworkTransactionAdd(transaction);
            }
            Console.WriteLine("");
        }