示例#1
0
        public string Deposit()
        {
            CheckAuthentication();

            var value = hardware.GetValueToDeposit();

            account.Deposit(value);

            remoteService.PersistAccount(account);

            return(SuccessDepositMessage);
        }