Exemple #1
0
 public void Deliver()
 {
     state = state.Deliver();
 }
Exemple #2
0
 public void TakeOutOfOven()
 {
     state = state.TakeOutOfOven();
 }
Exemple #3
0
 public void Package()
 {
     state = state.Package();
 }
Exemple #4
0
 public OnlineTakeawayOrder(Guid id, Address address)
 {
     this.Id      = id;
     this.Address = address;
     this.state   = new InKitchenQueue(this);
 }
Exemple #5
0
 public void Cook()
 {
     state = state.Cook();
 }
 public OnlineTakeawayOrder(Guid id, Address address)
 {
     this.Id = id;
     this.Address = address;
     this.state = new InKitchenQueue(this);
 }
 public void Deliver()
 {
     state = state.Deliver();
 }
 public void Package()
 {
     state = state.Package();
 }
 public void TakeOutOfOven()
 {
     state = state.TakeOutOfOven();
 }
 public void Cook()
 {
     state = state.Cook();
 }