Ejemplo n.º 1
0
 public InstanceRepository(
     IOptions <LocalPlatformSettings> localPlatformSettings,
     IDataRepository dataRepository)
 {
     _localPlatformSettings = localPlatformSettings.Value;
     _dataRepository        = dataRepository;
 }
Ejemplo n.º 2
0
 public PartiesWrapper(IOptions <LocalPlatformSettings> localPlatformSettings,
                       IPersons personsService, IOrganizations organizationService)
 {
     _localPlatformSettings    = localPlatformSettings.Value;
     this._organizationService = organizationService;
     this._personService       = personsService;
 }
Ejemplo n.º 3
0
 public HomeController(
     ILogger <HomeController> logger,
     IOptions <GeneralSettings> generalSettings,
     IOptions <LocalPlatformSettings> localPlatformSettings,
     IApplicationRepository applicationRepository,
     IUserProfiles userProfileService)
 {
     _logger                     = logger;
     _generalSettings            = generalSettings.Value;
     this._localPlatformSettings = localPlatformSettings.Value;
     this._applicationRepository = applicationRepository;
     this._userProfileService    = userProfileService;
 }
Ejemplo n.º 4
0
 public HomeController(
     IOptions <GeneralSettings> generalSettings,
     IOptions <LocalPlatformSettings> localPlatformSettings,
     IApplicationRepository applicationRepository,
     IUserProfiles userProfileService,
     IAuthentication authenticationService,
     ILocalTestAppSelection appSelectionService)
 {
     _generalSettings       = generalSettings.Value;
     _localPlatformSettings = localPlatformSettings.Value;
     _applicationRepository = applicationRepository;
     _userProfileService    = userProfileService;
     _authenticationService = authenticationService;
     _appSelectionService   = appSelectionService;
 }
Ejemplo n.º 5
0
 public InstanceEventRepository(IOptions <LocalPlatformSettings> localPlatformSettings, ILogger <InstanceEventRepository> logger)
 {
     _localPlatformSettings = localPlatformSettings.Value;
     _logger = logger;
 }
 public OrganizationsWrapper(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 7
0
 public PartiesService(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 8
0
 public LocalAppFile(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RolesWrapper"/> class
 /// </summary>
 /// <param name="rolesClient">the client handler for roles api</param>
 public RolesWrapper(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     this._localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 10
0
 public InstanceRepository(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 11
0
 public UserProfilesWrapper(IOptions <LocalPlatformSettings> localPlatformSettings, LocalTest.Services.Register.Interface.IParties partiesService)
 {
     _localPlatformSettings = localPlatformSettings.Value;
     _partiesService        = partiesService;
 }
Ejemplo n.º 12
0
 public ApplicationRepository(IOptions <LocalPlatformSettings> localPlatformSettings, ILogger <ApplicationRepository> logger)
 {
     _localPlatformSettings = localPlatformSettings.Value;
     _logger = logger;
 }
Ejemplo n.º 13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PolicyRetrievalPoint"/> class.
 /// </summary>
 /// <param name="policyRepository">The policy Repository..</param>
 public PolicyRetrievalPoint(IOptions <LocalPlatformSettings> localPlatformSettings, ILocalTestAppSelection localTestAppSelectionService)
 {
     _localPlatformSettings        = localPlatformSettings.Value;
     _localTestAppSelectionService = localTestAppSelectionService;
 }
Ejemplo n.º 14
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PolicyRetrievalPoint"/> class.
 /// </summary>
 /// <param name="policyRepository">The policy Repository..</param>
 public PolicyRetrievalPoint(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 15
0
 public DataRepository(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 16
0
 public ApplicationRepository(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 17
0
 public PersonsWrapper(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
Ejemplo n.º 18
0
 public UserProfilesWrapper(IOptions <LocalPlatformSettings> localPlatformSettings)
 {
     _localPlatformSettings = localPlatformSettings.Value;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PolicyInformationRepository"/> class
 /// </summary>
 /// <param name="cosmosettings">the configuration settings for cosmos database</param>
 /// <param name="logger">the logger</param>
 public PolicyInformationRepository(IOptions <LocalPlatformSettings> localPlatformSettings, IInstanceRepository instanceRepository)
 {
     this._localPlatformSettings = localPlatformSettings.Value;
     this._instanceRepository    = instanceRepository;
 }