Exemplo n.º 1
0
 public ApartmentRentedState(AutomatInterface a)
 {
     automat = a;
 }
Exemplo n.º 2
0
 public FullyRentedState(AutomatInterface a)
 {
     automat = a;
 }
Exemplo n.º 3
0
 public WaitingState(AutomatInterface a)
 {
     automat = a;
 }
Exemplo n.º 4
0
 public GotApplicationState(AutomatInterface a)
 {
     automat = a;
     random  = new Random(DateTime.Now.Millisecond);
 }