Example #1
0
 public DfcBreadcrumbControllerTests()
 {
     repositoryCategoryFake   = A.Fake <IJobProfileCategoryRepository>(ops => ops.Strict());
     repositoryJobProfileFake = A.Fake <IJobProfileRepository>(ops => ops.Strict());
     sitefinityCurrentContext = A.Fake <ISitefinityCurrentContext>(ops => ops.Strict());
     loggerFake = A.Fake <IApplicationLogger>();
 }
Example #2
0
 public DynamicContentConverter(IRelatedClassificationsRepository relatedClassificationsRepository, IDynamicContentExtensions dynamicContentExtensions, IContentPropertyConverter <HowToBecomeData> htbContentPropertyConverter, IContentPropertyConverter <WhatYouWillDo> whatYouWillDoPropertyConverter, IJobProfileCategoryRepository jobProfileCategoryRepository)
 {
     this.relatedClassificationsRepository = relatedClassificationsRepository;
     this.htbContentPropertyConverter      = htbContentPropertyConverter;
     this.dynamicContentExtensions         = dynamicContentExtensions;
     this.whatYouWillDoPropertyConverter   = whatYouWillDoPropertyConverter;
     this.jobProfileCategoryRepository     = jobProfileCategoryRepository;
 }
 public JobProfileIndexEnhancer(
     IJobProfileRepository jobProfileRepository,
     IJobProfileCategoryRepository jobProfileCategoryRepository,
     ISalaryService salaryService,
     ISalaryCalculator salaryCalculator,
     IApplicationLogger applicationLogger)
 {
     this.jobProfileRepository         = jobProfileRepository;
     this.jobProfileCategoryRepository = jobProfileCategoryRepository;
     this.salaryService     = salaryService;
     this.salaryCalculator  = salaryCalculator;
     this.applicationLogger = applicationLogger;
 }
 public SiteMapHandler(IJobProfileCategoryRepository categoryRepository)
 {
     this.categoryRepository = categoryRepository;
 }
Example #5
0
 public JobProfileCategoriesController(IJobProfileCategoryRepository repository, IWebAppContext webAppContext, IApplicationLogger applicationLogger) : base(applicationLogger)
 {
     jobProfileCategoryRepository = repository;
     this.webAppContext           = webAppContext;
 }
Example #6
0
 public SetContentRelatedPageTitleController(IJobProfileCategoryRepository categoryRepo, IJobProfileRepository jobProfileRepo, IWebAppContext webAppContext, IApplicationLogger applicationLogger) : base(applicationLogger)
 {
     this.categoryRepo         = categoryRepo;
     this.jobProfileRepository = jobProfileRepo;
     this.webAppContext        = webAppContext;
 }
 public JobProfilesByCategoryController(IJobProfileCategoryRepository categoryRepo, IWebAppContext webAppContext, IApplicationLogger applicationLogger) : base(applicationLogger)
 {
     this.categoryRepo  = categoryRepo;
     this.webAppContext = webAppContext;
 }
 public DfcBreadcrumbController(IJobProfileCategoryRepository categoryRepo, IJobProfileRepository jobProfileRepo, ISitefinityCurrentContext sitefinityCurrentContext, IApplicationLogger applicationLogger) : base(applicationLogger)
 {
     this.categoryRepo             = categoryRepo;
     this.jobProfileRepository     = jobProfileRepo;
     this.sitefinityCurrentContext = sitefinityCurrentContext;
 }