public K8SController(
     IPortalService portalService,
     IAksService aksService)
 {
     _portalService = portalService;
     _aksService    = aksService;
 }
        public EnvironmentSeedCommand(
            AppSettings settings,
            IPortalService portal,
            IHSSupplierCommand supplierCommand,
            IHSBuyerCommand buyerCommand,
            IHSBuyerLocationCommand buyerLocationCommand,
            IOrderCloudClient oc,
            IExchangeRatesCommand exhangeRates
            )
        {
            _settings             = settings;
            _portal               = portal;
            _supplierCommand      = supplierCommand;
            _buyerCommand         = buyerCommand;
            _buyerLocationCommand = buyerLocationCommand;
            _oc           = oc;
            _exhangeRates = exhangeRates;
            var translationsConfig = new BlobServiceConfig()
            {
                ConnectionString = _settings.BlobSettings.ConnectionString,
                Container        = _settings.BlobSettings.ContainerNameTranslations
            };

            _translationsBlob = new OrderCloudIntegrationsBlobService(translationsConfig);
        }
Example #3
0
 public PortalController(
     IPortalService portalService,
     ILoggingService loggingService)
 {
     _portalService  = portalService;
     _loggingService = loggingService;
 }
Example #4
0
 public CustomerManager(IStarbucksService starbucks, IPortalService portal, ICompanyService company, ICustomerDal customer)
 {
     _portal    = portal;
     _starbucks = starbucks;
     _company   = company;
     _customer  = customer;
 }
 public CmsPortalManagerController(
     IPortalService portalService, IDomainService domainService, IAnalyticsAccountService analyticsAccountService)
 {
     this.portalService = portalService;
     this.domainService = domainService;
     this.analyticsAccountService = analyticsAccountService;
 }
 public VeeamWorkerManager(
     IPortalService portalService,
     IPortalAuthenticationService authService,
     IVeeamManager veeamManager)
     : base(portalService, authService)
 {
     _veeamManager = veeamManager;
 }
Example #7
0
 public UserWorkerManager(
     IPortalService portalService,
     IPortalAuthenticationService authService,
     IActiveDirectoryManager activeDirectoryManager
     ) : base(portalService, authService)
 {
     _activeDirectoryManager = activeDirectoryManager;
 }
Example #8
0
        public CutMarkViewModel()
        {
            portalService = new PortalService();

            MarkMetered = new Command(OnMarkMeteredExecute);
            MarkBegin   = new Command(OnMarkBeginExecute);
            MarkEnd     = new Command(OnMarkEndExecute);
        }
        /// <summary>
        /// </summary>
        /// <param name="portalService"></param>
        /// <exception cref="ArgumentNullException"></exception>
        protected BlockBehaviorDescriptor(IPortalService portalService)
        {
            // validate arguments
            if (portalService == null)
                throw new ArgumentNullException("portalService");

            // set values
            this.portalService = portalService;
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="portalService"></param>
        /// <exception cref="ArgumentNullException"></exception>
        public ContentUrlGenerator(IPortalService portalService)
        {
            // validate arguments
            if (portalService == null)
                throw new ArgumentNullException("portalService");

            // set values
            this.portalService = portalService;
        }
Example #11
0
 public LazyMapManager(IMapNpcService npcService, IMapMonsterService monsterService, IPortalService portalService, IShopService shopService, IMapService mapService, INpcMonsterSkillService npcMonsterSkillService)
 {
     _npcService             = npcService;
     _monsterService         = monsterService;
     _portalService          = portalService;
     _shopService            = shopService;
     _mapService             = mapService;
     _npcMonsterSkillService = npcMonsterSkillService;
 }
Example #12
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="portalService"></param>
        /// <exception cref="ArgumentNullException"></exception>
        public RenderBlock(IPortalService portalService)
        {
            // validate arguments
            if (portalService == null)
                throw new ArgumentNullException("portalService");

            // set values
            this.portalService = portalService;
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="portalService"></param>
        /// <exception cref="ArgumentNullException"></exception>
        public GetColumnDatasetTag(IPortalService portalService)
        {
            // validate arguments
            if (portalService == null)
                throw new ArgumentNullException("portalService");

            // set values
            this.portalService = portalService;
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="parser"></param>
        /// <param name="portalService"></param>
        /// <exception cref="ArgumentNullException"></exception>
        public RetrieveTemplatePageNodeTag(IQueryParser parser, IPortalService portalService)
            : base(parser)
        {
            // validate arguments
            if (portalService == null)
                throw new ArgumentNullException("portalService");

            // set values
            this.portalService = portalService;
        }
Example #15
0
        public NewActiveDirectoryUserEventHandler(
            IActiveDirectoryManager activeDirectoryManager,
            IPortalService portalService,
            ISettingManager settingManager)
        {
            Logger = NullLogger.Instance;

            _activeDirectoryManager = activeDirectoryManager;
            _portalService          = portalService;
            _settingManager         = settingManager;
        }
Example #16
0
 public CvController(
     ILoggingService loggingService,
     ICurriculumVitaeService curriculumVitaeService,
     IExperienceService experienceService,
     ICourseService courseService,
     IPortalService portalService)
 {
     _loggingService         = loggingService;
     _curriculumVitaeService = curriculumVitaeService;
     _experienceService      = experienceService;
     _courseService          = courseService;
     _portalService          = portalService;
 }
 public EnvironmentSeedCommand(
     AppSettings settings,
     IPortalService portal,
     IHSSupplierCommand supplierCommand,
     IHSBuyerCommand buyerCommand,
     IHSBuyerLocationCommand buyerLocationCommand,
     IOrderCloudClient oc
     )
 {
     _portal               = portal;
     _supplierCommand      = supplierCommand;
     _buyerCommand         = buyerCommand;
     _buyerLocationCommand = buyerLocationCommand;
     _oc       = oc;
     _settings = settings;
 }
 public EnvironmentSeedCommand(
     AppSettings settings,
     IPortalService portal,
     IHeadstartSupplierCommand supplierCommand,
     IHSBuyerCommand buyerCommand,
     ICMSClient cms,
     IOrderCloudClient oc
     )
 {
     _settings        = settings;
     _portal          = portal;
     _supplierCommand = supplierCommand;
     _buyerCommand    = buyerCommand;
     _cms             = cms;
     _oc = oc;
 }
        //private readonly IProjectService _projectService;
        //private readonly IBuildService _buildService;

        public LoginController(
            Configuration configuration,
            IPortalService portalService,
            IAcrService acrService,
            IDockerService dockerService,
            IHelmService helmService,
            IAksService aksService,
            IProjectService projectService,
            IBuildService buildService)
        {
            Configuration  = configuration;
            _portalService = portalService;
            _acrService    = acrService;
            _dockerService = dockerService;
            _helmService   = helmService;
            _aksService    = aksService;
            //_projectService = projectService;
            //_buildService = buildService;
        }
        protected override void OnInitialized()
        {
            //general services
            _contextHolder = Services.AddNew<MigrationContextHolderService, IMigrationContextHolderService>();
            _entityLoader = Services.AddNew<OrmEntityLoaderService, IOrmEntityLoaderService>();
            _entityPersistor = Services.AddNew<EntityService, IEntityService>();
            _portalUpdater = Services.AddNew<PortalService, IPortalService>();
            _vsProjectGenerator = Services.AddNew<VSProjectService, IVSProjectService>();
            _manifestGenerator = Services.AddNew<ManifestService, IManifestService>();
            _hierarchyNodeService = Services.AddNew<HierarchyNodeService, IHierarchyNodeService>();

            //form services
            Services.AddNew<FormLayoutService, IFormLayoutService>();
            Services.AddNew<DataPathTranslationService, IDataPathTranslationService>();
            Services.AddNew<ComponentSimplificationService, IComponentSimplificationService>();
            Services.AddNew<FormSimplificationService, IFormSimplificationService>();
            Services.AddNew<FormFlatteningService, IFormFlatteningService>();
            Services.AddNew<ControlAlignmentService, IControlAlignmentService>();
            Services.AddNew<VisibilityDeterminationService, IVisibilityDeterminationService>();

            //TODO: script services

            _migrators = new IMigrationSupport[]
                {
                    BuildTransientItem<MainViewMigrationSupport>(),
                    BuildTransientItem<ToolbarMigrationSupport>(),
                    BuildTransientItem<FormMigrationSupport>(),
                    BuildTransientItem<LegacyFormMigrationSupport>(),
                    BuildTransientItem<ScriptMigrationSupport>()
                };

            base.OnInitialized();
        }
 public ClientController(IPortalService portalService)
 {
     _portalService = portalService;
 }
Example #22
0
 public AboutController(IPortalService service)
 {
     _service = service;
 }
 /// <summary>
 /// </summary>
 /// <param name="portalService"></param>
 /// <exception cref="ArgumentNullException"></exception>
 public PersonalizedBlockBehaviorDescriptor(IPortalService portalService)
     : base(portalService)
 {
 }
Example #24
0
 public RoomsController(IPortalService _portalService) : base(_portalService)
 {
 }
Example #25
0
 public AttachmentController(IPortalService service)
 {
     _service = service;
 }
 public PortalServiceProxy()
 {
     _portalService = new PortalServiceClient();
 }
 protected WorkerManagerBase(IPortalService portalService, IPortalAuthenticationService authService)
 {
     PortalService = portalService;
     AuthService   = authService;
 }
 public MeetingController(IPortalService service)
 {
     this.service = service;
 }
Example #29
0
 public HotelsController(IPortalService _portalService) : base(_portalService)
 {
 }
Example #30
0
 public ReviewsController(IPortalService portalService)
 {
     _portalService = portalService;
 }
 /// <summary>
 /// </summary>
 /// <param name="portalService"></param>
 /// <exception cref="ArgumentNullException"></exception>
 public DefaultBlockBehaviorDescriptor(IPortalService portalService)
     : base(portalService)
 {
 }
Example #32
0
 public DocumentationController(IPortalService service)
 {
     _service = service;
 }
 /// <summary>
 /// </summary>
 /// <param name="portalService">The <see cref="IPortalService"/>.</param>
 public SharedBlockDisplayBehaviorDescriptor(IPortalService portalService)
     : base(portalService)
 {
 }
Example #34
0
 public BookingsController(IPortalService portalService)
 {
     _portalService = portalService;
 }
 /// <summary>
 /// </summary>
 /// <param name="portalService"></param>
 /// <exception cref="ArgumentNullException"></exception>
 public ContentBlockBehaviorDescriptor(IPortalService portalService)
     : base(portalService)
 {
 }
 /// <summary>
 /// </summary>
 /// <param name="portalService"></param>
 /// <exception cref="ArgumentNullException"></exception>
 public PageBlockBehaviorDescriptor(IPortalService portalService)
     : base(portalService)
 {
 }
Example #37
0
 public BaseController(IPortalService portalService)
 {
     _portalService = portalService;
 }