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