Esempio n. 1
0
 public AssetService(IAssetCategoryService assetCategoryService
                     , IAssetTypeService assetTypeService
                     , IAssetRepository assetRepository
                     , IHardwareAssetService hardwareAssetService
                     , ISoftwareAssetService softwareAssetService
                     , IAssetTrackerService assetTrackerService
                     , IEmployeeService employeeService
                     , IComponentTypeService componentTypeService
                     , IComponentsService componentsService
                     , IComponentAssetMappingService componentAssetMappingService
                     , IEmployeeAssetMappingRepository employeeAssetMappingRepository
                     , IComponentTrackerService componentTrackerService)
 {
     _assetCategoryService           = assetCategoryService;
     _assetTypeService               = assetTypeService;
     _assetRepository                = assetRepository;
     _hardwareAssetService           = hardwareAssetService;
     _softwareAssetService           = softwareAssetService;
     _assetTrackerService            = assetTrackerService;
     _employeeService                = employeeService;
     _componentTypeService           = componentTypeService;
     _componentsService              = componentsService;
     _componentAssetMappingService   = componentAssetMappingService;
     _employeeAssetMappingRepository = employeeAssetMappingRepository;
     _componentTrackerService        = componentTrackerService;
 }
 public UnitPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IAcademicYearService academicYearService,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     IFundingService fundingService,
     IValidityService validityService,
     ILearningDeliveryCategoryService learningDeliveryCategoryService,
     IFrameworkAimService frameworkAimService,
     IEntitlementCategoryService entitlementCategoryService,
     IAwardOrgService awardOrgService)
     : base(
         searchServiceClient,
         populationConfiguration,
         contextFactory,
         academicYearService,
         issuingAuthorityService,
         componentTypeService,
         fundingService,
         validityService,
         learningDeliveryCategoryService,
         frameworkAimService,
         entitlementCategoryService,
         awardOrgService)
 {
 }
Esempio n. 3
0
 public ComponentsController(IComponentsService componentsService, IComponentTypeService componentTypeService, IComponentAssetMappingService componentAssetMappingService, ILog logger)
 {
     _componentsService            = componentsService;
     _componentTypeService         = componentTypeService;
     _componentAssetMappingService = componentAssetMappingService;
     _logger = logger;
 }
Esempio n. 4
0
        public SearchServiceTests()
        {
            _userComponentTypeService = new UserComponentTypeService(SCManagerDbContext);
            _componentTypeService     = new ComponentTypeService(SCManagerDbContext);

            _searchService = new SearchService(_userComponentTypeService, _componentTypeService);
        }
 public LearningAimIndexPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IAcademicYearService academicYearService,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     IFundingService fundingService,
     IValidityService validityService,
     ILearningDeliveryCategoryService learningDeliveryCategoryService,
     IFrameworkAimService frameworkAimService,
     IEntitlementCategoryService entitlementCategoryService,
     IAwardOrgService awardOrgService)
     : base(searchServiceClient, populationConfiguration)
 {
     _contextFactory                  = contextFactory;
     _academicYearService             = academicYearService;
     _issuingAuthorityService         = issuingAuthorityService;
     _componentTypeService            = componentTypeService;
     _fundingService                  = fundingService;
     _validityService                 = validityService;
     _learningDeliveryCategoryService = learningDeliveryCategoryService;
     _frameworkAimService             = frameworkAimService;
     _entitlementCategoryService      = entitlementCategoryService;
     _awardOrgService                 = awardOrgService;
 }
Esempio n. 6
0
 public ComponentController(IComponentTypeService componentTypeService, IComponentService componentService, IDonorService donorService, IBranchService branchService, IUserHelper userHelper)
 {
     _componentTypeService = componentTypeService;
     _componentService     = componentService;
     _donorService         = donorService;
     _branchService        = branchService;
     _userHelper           = userHelper;
 }
Esempio n. 7
0
 public HomeController(IUserComponentTypeService userComponentTypeService,
                       IComponentTypeService componentTypeService,
                       UserManager <ApplicationUser> userManager)
 {
     _userComponentTypeService = userComponentTypeService;
     _componentTypeService     = componentTypeService;
     _userManager = userManager;
 }
Esempio n. 8
0
 public BaseController(
     IComponentService componentService,
     IComponentTypeService componentTypeService,
     IEquipmentService equipmentService)
 {
     ComponentService     = componentService;
     ComponentTypeService = componentTypeService;
     EquipmentService     = equipmentService;
 }
Esempio n. 9
0
 public SearchController(IComponentTypeService componentTypeService, IComponentService componentService, IEquipmentTypeService equipmentTypeService, IEquipmentService equipmentService, IStatusTypeService statusTypeService, IRepairPlaceService repairPlaceService, IHistoryService historyService)
 {
     ComponentTypeService = componentTypeService;
     ComponentService     = componentService;
     EquipmentTypeService = equipmentTypeService;
     EquipmentService     = equipmentService;
     StatusTypeService    = statusTypeService;
     RepairPlaceService   = repairPlaceService;
     HistoryService       = historyService;
 }
 public StandardsPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IStandardSectorCodeService standardSectorCodeService,
     ICommonComponentLookupService commonComponentLookupService,
     IComponentTypeService componentTypeService,
     ICommonComponentService commonComponentService,
     IRelatedLearningAimsService relatedLearningAimsService)
     : base(searchServiceClient, populationConfiguration)
 {
     _contextFactory               = contextFactory;
     _standardSectorCodeService    = standardSectorCodeService;
     _commonComponentLookupService = commonComponentLookupService;
     _componentTypeService         = componentTypeService;
     _commonComponentService       = commonComponentService;
     _relatedLearningAimsService   = relatedLearningAimsService;
 }
 public FrameworkPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     ICommonComponentLookupService commonComponentLookupService,
     ICommonComponentService commonComponentService,
     IRelatedLearningAimsService relatedLearningAimsService)
     : base(searchServiceClient, populationConfiguration)
 {
     _contextFactory               = contextFactory;
     _issuingAuthorityService      = issuingAuthorityService;
     _componentTypeService         = componentTypeService;
     _commonComponentLookupService = commonComponentLookupService;
     _commonComponentService       = commonComponentService;
     _relatedLearningAimsService   = relatedLearningAimsService;
 }
Esempio n. 12
0
 public TLevelPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     ICommonComponentLookupService commonComponentLookupService,
     ICommonComponentService commonComponentService,
     IRelatedLearningAimsService relatedLearningAimsService)
     : base(
         searchServiceClient,
         populationConfiguration,
         contextFactory,
         issuingAuthorityService,
         componentTypeService,
         commonComponentLookupService,
         commonComponentService,
         relatedLearningAimsService)
 {
 }
Esempio n. 13
0
 public AdminController
 (
     UserManager <ApplicationUser> userManager,
     IMapper mapper,
     IComponentTypeService componentTypeService,
     IUnitMultiplierService unitMultiplierService,
     IStaticSiteInfoService staticSiteInfoService,
     IComponentTypeDetailService componentTypeDetailService,
     ICloudinaryService cloudinaryService,
     HtmlSanitizer htmlSanitizer
 )
 {
     _userManager                = userManager;
     _mapper                     = mapper;
     _componentTypeService       = componentTypeService;
     _unitMultiplierService      = unitMultiplierService;
     _staticSiteInfoService      = staticSiteInfoService;
     _componentTypeDetailService = componentTypeDetailService;
     _cloudinaryService          = cloudinaryService;
     _htmlSanitizer              = htmlSanitizer;
 }
 public MyComponentsController
 (
     UserManager <ApplicationUser> userManager,
     IMapper mapper,
     IComponentTypeService componentTypeService,
     IUnitMultiplierService unitMultiplierService,
     IStaticSiteInfoService staticSiteInfoService,
     IUserComponentTypeService userComponentTypeService,
     IUserComponentTypeDetailService userComponentTypeDetailService,
     IComponentTypeDetailService componentTypeDetailService,
     ICloudinaryService cloudinaryService
 )
 {
     _userManager                    = userManager;
     _mapper                         = mapper;
     _componentTypeService           = componentTypeService;
     _unitMultiplierService          = unitMultiplierService;
     _staticSiteInfoService          = staticSiteInfoService;
     _userComponentTypeService       = userComponentTypeService;
     _userComponentTypeDetailService = userComponentTypeDetailService;
     _componentTypeDetailService     = componentTypeDetailService;
     _cloudinaryService              = cloudinaryService;
 }
Esempio n. 15
0
 public ComponentTypeController(IComponentTypeService ComponentTypeService, ILog logger, IAssetTypeService assetTypeService)
 {
     _ComponentTypeService = ComponentTypeService;
     _logger           = logger;
     _assetTypeService = assetTypeService;
 }
Esempio n. 16
0
 public ComponentsService(IComponentsRepository componentsRepository, IEmployeeService employeeService, IComponentTypeService componentTypeService)
 {
     _componentRepository  = componentsRepository;
     _employeeService      = employeeService;
     _componentTypeService = componentTypeService;
 }
Esempio n. 17
0
 public ComponentTypeServiceTests()
 {
     _componentTypeService = new ComponentTypeService(SCManagerDbContext);
 }
Esempio n. 18
0
 public SearchService(IUserComponentTypeService userComponentTypeService,
                      IComponentTypeService componentTypeService)
 {
     _userComponentTypeService = userComponentTypeService;
     _componentTypeService     = componentTypeService;
 }
Esempio n. 19
0
 public ComponentTypeController(IComponentTypeService componentTypeService) : base(componentTypeService)
 {
 }
Esempio n. 20
0
 public ComponentTypeController(IComponentTypeService componentTypeService)
 {
     _componentTypeService = componentTypeService;
 }
Esempio n. 21
0
 public ComponentTypeController(IComponentTypeService ComponentTypeService, ILog logger)
 {
     _ComponentTypeService = ComponentTypeService;
     _logger = logger;
 }
Esempio n. 22
0
 public BaseController(IComponentTypeService compTypeService)
 {
     ComponentTypeService = compTypeService;
 }
Esempio n. 23
0
 public ComponentController(
     IComponentService compService,
     IComponentTypeService compTypeService,
     IEquipmentService equipService) : base(compService, compTypeService, equipService)
 {
 }