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