C# 클래스 Treasury.Bank

파일 보기 프로젝트 열기: NyxStudios/Treasury

공개 메소드들

메소드 설명
Bank ( String name ) : System
DoesAccountExist ( string name ) : bool
GetAccountAmount ( string name ) : int
UpdateAccount ( string name, int new_amount ) : void

비공개 메소드들

메소드 설명
InitializeDB ( ) : void

Initializes this banks database for access later

SanitizeName ( ) : string

Returns the name of the bank with spaces replaced with underscores.

메소드 상세

Bank() 공개 메소드

public Bank ( String name ) : System
name String
리턴 System

DoesAccountExist() 공개 메소드

public DoesAccountExist ( string name ) : bool
name string
리턴 bool

GetAccountAmount() 공개 메소드

public GetAccountAmount ( string name ) : int
name string
리턴 int

UpdateAccount() 공개 메소드

public UpdateAccount ( string name, int new_amount ) : void
name string
new_amount int
리턴 void