public void createIDTest02() { AccountBLL accountBLL; string s; accountBLL = AccountBLLFactory.Create(); s = this.createIDTest(accountBLL); }
public void LoadUserTest02() { AccountBLL accountBLL; List <Account> list; accountBLL = AccountBLLFactory.Create(); list = this.LoadUserTest(accountBLL, (string)null); }
public void DeleteAccountTest02() { AccountBLL accountBLL; bool b; accountBLL = AccountBLLFactory.Create(); b = this.DeleteAccountTest(accountBLL, (string)null); }
public void LoadAccountTest02() { AccountBLL accountBLL; List <Account> list; accountBLL = AccountBLLFactory.Create(); list = this.LoadAccountTest(accountBLL); }
public void AddAccountTest04() { AccountBLL accountBLL; bool b; accountBLL = AccountBLLFactory.Create(); b = this.AddAccountTest(accountBLL, (string)null, (string)null, false, false); }