예제 #1
0
 public ViewState(string name, bool isRecoveryRunning, StateReceive stateReceive)
 {
     Name              = name;
     StateReceive      = stateReceive;
     IsRecoveryRunning = isRecoveryRunning;
 }
예제 #2
0
 public EventsourcedState(string name, Func <bool> isRecoveryRunning, StateReceive stateReceive)
 {
     Name = name;
     IsRecoveryRunning = isRecoveryRunning;
     StateReceive      = stateReceive;
 }
 public ViewState(string name, bool isRecoveryRunning, StateReceive stateReceive)
 {
     Name = name;
     StateReceive = stateReceive;
     IsRecoveryRunning = isRecoveryRunning;
 }