예제 #1
0
 public PassbookForm(string name)
 {
     _passbook     = new PassbookRepositry();
     _transactions = new List <BankTransaction>();
     _currentuser  = name;
     InitializeComponent();
 }
예제 #2
0
 public DownloadPassbook(string name)
 {
     _passbook     = new PassbookRepositry();
     _transactions = new List <BankTransaction>();
     _currentuser  = name;
 }