C# Class Treasury.Bank

Afficher le fichier Open project: NyxStudios/Treasury

Méthodes publiques

Méthode Description
Bank ( String name ) : System
DoesAccountExist ( string name ) : bool
GetAccountAmount ( string name ) : int
UpdateAccount ( string name, int new_amount ) : void

Private Methods

Méthode Description
InitializeDB ( ) : void

Initializes this banks database for access later

SanitizeName ( ) : string

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

Method Details

Bank() public méthode

public Bank ( String name ) : System
name String
Résultat System

DoesAccountExist() public méthode

public DoesAccountExist ( string name ) : bool
name string
Résultat bool

GetAccountAmount() public méthode

public GetAccountAmount ( string name ) : int
name string
Résultat int

UpdateAccount() public méthode

public UpdateAccount ( string name, int new_amount ) : void
name string
new_amount int
Résultat void