コード例 #1
0
ファイル: Session.cs プロジェクト: mfylypiuk/ATMchik
        public bool GetMoney(decimal value)
        {
            if (!Authenticated)
            {
                throw new Exception("Forbidden");
            }

            if (value <= 0)
            {
                throw new Exception("Value is incorrect");
            }

            try
            {
                database.ChangeValue(bankAccount, 0 - value);
            }
            catch (Exception)
            {
                throw;
            }

            return(true);
        }