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