public ProcessOperationSaga(StateStoreContext dbContext, IBus bus)
 {
     _dbContext = dbContext;
     _bus       = bus;
 }
Beispiel #2
0
 public OperationManager(StateStoreContext db, IBus bus)
 {
     _db  = db;
     _bus = bus;
 }
Beispiel #3
0
 public UpdateInventoryCommandHandler(StateStoreContext stateStoreContext)
 {
     _stateStoreContext = stateStoreContext;
 }
Beispiel #4
0
 public MachinesController(StateStoreContext context, IOperationManager operationManager)
 {
     _db = context;
     _operationManager = operationManager;
 }
 public MachineStateChangedEventHandler(StateStoreContext stateStoreContext)
 {
     _stateStoreContext = stateStoreContext;
 }
Beispiel #6
0
 public VirtualMachineIpAddressChangedEventHandler(StateStoreContext stateStoreContext)
 {
     _stateStoreContext = stateStoreContext;
 }
Beispiel #7
0
 public NetworksController(StateStoreContext context)
 {
     _db = context;
 }
Beispiel #8
0
 public SubnetsController(StateStoreContext context)
 {
     _db = context;
 }
Beispiel #9
0
 public AttachMachineToOperationCommandHandler(StateStoreContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #10
0
 public OperationsController(StateStoreContext context)
 {
     _db = context;
 }
 public OperationTaskProgressEventHandler(StateStoreContext dbContext)
 {
     _dbContext = dbContext;
 }