Beispiel #1
0
 public CreateCustomer(DataModel.IDbRepository repo)
 {
     Repo = repo;
 }
 public LoggedInMenu(DataModel.IDbRepository repo, Customer current)
 {
     this.LoggedInCustomer = current;
     Repo = repo;
 }
 public ViewStoreMenu(DataModel.IDbRepository repo, Customer currentCustomer, Location selectedStore)
 {
     Repo               = repo;
     Customer           = currentCustomer;
     this.selectedStore = selectedStore;
 }
Beispiel #4
0
 public FindCustomer(DataModel.IDbRepository repo)
 {
     Repo = repo;
 }
 public SelectStoreMenu(DataModel.IDbRepository repo, Customer loggedInCustomer)
 {
     Repo = repo;
     this.loggedInCustomer = loggedInCustomer;
 }