Exemplo n.º 1
0
 public PassbookForm(string name)
 {
     _passbook     = new PassbookRepositry();
     _transactions = new List <BankTransaction>();
     _currentuser  = name;
     InitializeComponent();
 }
Exemplo n.º 2
0
 public DownloadPassbook(string name)
 {
     _passbook     = new PassbookRepositry();
     _transactions = new List <BankTransaction>();
     _currentuser  = name;
 }