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