C# 클래스 FacadePattern.BankAccountFacade

파일 보기 프로젝트 열기: marwie/Design-Patterns-in-Unity-Example 1 사용 예제들

공개 메소드들

메소드 설명
BankAccountFacade ( int accountNumber, int newSecurityCode ) : System.Collections
DepositCash ( double cash ) : void
GetAccountNumber ( ) : int
GetSecurityCode ( ) : int
WithdrawCash ( double cash ) : void

메소드 상세

BankAccountFacade() 공개 메소드

public BankAccountFacade ( int accountNumber, int newSecurityCode ) : System.Collections
accountNumber int
newSecurityCode int
리턴 System.Collections

DepositCash() 공개 메소드

public DepositCash ( double cash ) : void
cash double
리턴 void

GetAccountNumber() 공개 메소드

public GetAccountNumber ( ) : int
리턴 int

GetSecurityCode() 공개 메소드

public GetSecurityCode ( ) : int
리턴 int

WithdrawCash() 공개 메소드

public WithdrawCash ( double cash ) : void
cash double
리턴 void