Bank.cs 801 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. namespace FacadePattern
  3. {
  4. public class Bank : IBank
  5. {
  6. /// <summary>
  7. /// 查询余额
  8. /// </summary>
  9. /// <param name="account">银行账户</param>
  10. /// <returns></returns>
  11. public int CheckBalance(BankAccount account)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. public int WithdrewMoney(BankAccount account, int money)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. public int DepositMoney(BankAccount account, int money)
  20. {
  21. throw new NotImplementedException();
  22. }
  23. public int TransferMoney(BankAccount account, BankAccount targetAccount, int money)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. }
  28. }