Exemplo n.º 1
0
 public OccupyInstanceHandler(IInstanceRepository repository, IServiceInstanceProxy instanceProxy)
 {
     this.repository    = repository;
     this.instanceProxy = instanceProxy;
 }
Exemplo n.º 2
0
 public RemoveInstanceHandler(IInstanceRepository repository, IServiceInstanceProxy serviceInstance)
 {
     this.repository      = repository;
     this.serviceInstance = serviceInstance;
 }
Exemplo n.º 3
0
 public VacateInstanceHandler(IInstanceRepository repository, IServiceInstanceProxy serviceInstance, IHandleCommand <DeleteService> deleteService)
 {
     this.repository      = repository;
     this.serviceInstance = serviceInstance;
     this.deleteService   = deleteService;
 }