public EnvironmentService(
     IEnvironmentStore store,
     IDataLoader <Guid, Environment?> environmentByIdDataLoader)
 {
     _store = store;
     _environmentByIdDataLoader = environmentByIdDataLoader;
 }
 public GetSampleDataUseCase(IPetStore petStore, IUserStore userStore,
                             IEnvironmentStore environmentStore)
 {
     _petStore         = petStore;
     _userStore        = userStore;
     _environmentStore = environmentStore;
 }
 public EnvironmentByIdDataLoader(
     IEnvironmentStore applicationStore,
     IBatchScheduler batchScheduler)
     : base(batchScheduler)
 {
     _applicationStore = applicationStore;
 }
Beispiel #4
0
 public AddSampleUseCase(IUserStore userStore, IEnvironmentStore envStore, IPetStore petStore,
                         IEntityFactory entityFactory)
 {
     _userStore     = userStore;
     _envStore      = envStore;
     _petStore      = petStore;
     _entityFactory = entityFactory;
 }
 public RegisterEnvironmentUseCase(IEnvironmentStore envStore,
                                   IUserStore userStore,
                                   IEntityFactory entityFactory)
 {
     _envStore      = envStore;
     _userStore     = userStore;
     _entityFactory = entityFactory;
 }
Beispiel #6
0
 public UpdateNodeUseCase(IUserStore userStore,
                          IControllerStore controllerStore,
                          IEnvironmentStore environmentStore,
                          IEntityFactory entityFactory)
 {
     _userStore        = userStore;
     _controllerStore  = controllerStore;
     _environmentStore = environmentStore;
     _entityFactory    = entityFactory;
 }
 public GetEnvironmentUseCase(IUserStore userStore, IEnvironmentStore envStore)
 {
     _userStore = userStore;
     _envStore  = envStore;
 }