Ejemplo n.º 1
0
 public Location()
 {
     _db = new TrevorDBContext();
     PizzaToppingsOffered = new List <Topping>();
     PreviousCustomers    = new Dictionary <string, User>();
     StoreOrderHistory    = new List <Order>();
     FirstLocation();
 }
Ejemplo n.º 2
0
 public UserInterface()
 {
     ListOfLocations = new List <Location>();
     _db             = new TrevorDBContext();
     End             = false;
 }