Esempio n. 1
0
 public HotDogCartBindings(HotDogCart cart, Grill grill, Customers customers, Time time)
 {
     _cart      = cart;
     _grill     = grill;
     _customers = customers;
     _time      = time;
 }
Esempio n. 2
0
 public CustomersBinding(HotDogCart cart, Customers customers)
 {
     _cart      = cart;
     _customers = customers;
 }
        public override void Setup()
        {
            _pos = new HotDogCart(SellTime);

            base.Setup();
        }
Esempio n. 4
0
 public GrillBindings(Grill grill, Time time, HotDogCart cart)
 {
     _grill = grill;
     _time  = time;
     _cart  = cart;
 }