Beispiel #1
0
 public InterestController(
     IInterestService interestService,
     ILoggingService loggingService)
 {
     _interestService = interestService;
     _loggingService  = loggingService;
 }
Beispiel #2
0
 public UsersController(IRepositoryWrapper repo, IInterestService interest, IEventService events, LocationService locationService)
 {
     _repo            = repo;
     _interest        = interest;
     _events          = events;
     _locationService = locationService;
 }
Beispiel #3
0
 public ApplicationService(
     IInterestService interestService,
     IExperienceService experienceService
     )
 {
     _interestService   = interestService;
     _experienceService = experienceService;
 }
Beispiel #4
0
        public Interest Index([FromServices] IInterestService interestService,
                              [FromQuery] decimal valorinicial,
                              [FromQuery] int meses)
        {
            var model = new Interest();

            model.Result = interestService.Calc(valorinicial, meses).ToString();
            return(model);
        }
 public UsersController([FromServices]
                        IUserService userService,
                        IInterestService interestService,
                        IPersonService personService,
                        IPostingService postingService)
 {
     UserService     = userService;
     PersonService   = personService;
     InterestService = interestService;
     PostingService  = postingService;
 }
        public UserRegistrationService(IServiceProvider serviceProvider, UserManager <User> userManager, RoleManager <Role> roleManager)
        {
            _userManager       = userManager;
            _roleManager       = roleManager;
            _countryService    = serviceProvider.GetRequiredService <ICountryService>();
            _cityService       = serviceProvider.GetRequiredService <ICityService>();
            _ethnicityService  = serviceProvider.GetRequiredService <IEthnicityService>();
            _occupationService = serviceProvider.GetRequiredService <IOccupationService>();
            _profileService    = serviceProvider.GetRequiredService <IProfileService>();
            _interestService   = serviceProvider.GetRequiredService <IInterestService>();

            _unitOfWork = serviceProvider.GetRequiredService <IUnitOfWork>();
        }
 public IndividualCurriculumVitaeController(
     ICurriculumVitaeViewModelFactory curriculumVitaeViewModelFactory,
     ICurriculumVitaeService curriculumVitaeService,
     IUserService userService,
     IEducationInstitutionService educationInstitutionService,
     IEntityCRUDResponse entityCRUDResponse,
     IInterestService interestService
     )
 {
     this._curriculumVitaeViewModelFactory = curriculumVitaeViewModelFactory;
     this._CurriculumVitaeService          = curriculumVitaeService;
     this._userService = userService;
     this._educationInstitutionService = educationInstitutionService;
     this._entityCRUDResponse          = entityCRUDResponse;
     this._interestService             = interestService;
 }
Beispiel #8
0
 public CurriculumVitaeController(
     ICurriculumVitaeViewModelFactory curriculumVitaeViewModelFactory,
     ICurriculumVitaeService curriculumVitaeService,
     IUserService userService,
     IEducationInstitutionService educationInstitutionService,
     IEntityCRUDResponse entityCRUDResponse,
     IInterestService interestService,
     ICompanyService companyService,
     IUserKnowledgeBaseService userKnowledgeBaseService
     )
 {
     this._curriculumVitaeViewModelFactory = curriculumVitaeViewModelFactory;
     this._curriculumVitaeService          = curriculumVitaeService;
     this._userService = userService;
     this._educationInstitutionService = educationInstitutionService;
     this._entityCRUDResponse          = entityCRUDResponse;
     this._interestService             = interestService;
     this._companyService           = companyService;
     this._userKnowledgeBaseService = userKnowledgeBaseService;
 }
Beispiel #9
0
 public CurriculumVitaeViewModelFactory(
     IUserService userService,
     ICurriculumVitaeService curriculumVitaeService,
     IQualificationService qualificationService,
     IEducationInstitutionService educationInstitutionService,
     IInterestService interestService,
     ILanguageService languageService,
     IFileService fileService,
     IUserKnowledgeBaseService userKnowledgeBaseService,
     ICoreKnowledgeBaseService coreKnowledgeBaseService,
     ICompanyService companyService
     )
 {
     this._curriculumVitaeService      = curriculumVitaeService;
     this._userService                 = userService;
     this._qualificationService        = qualificationService;
     this._educationInstitutionService = educationInstitutionService;
     this._interestService             = interestService;
     this._languageService             = languageService;
     this._fileService                 = fileService;
     this._userKnowledgeBaseService    = userKnowledgeBaseService;
     this._coreKnowledgeBaseService    = coreKnowledgeBaseService;
     this._companyService              = companyService;
 }
Beispiel #10
0
 public ParameterController(IInterestService interestService)
 {
     this.interestService = interestService;
 }
Beispiel #11
0
 public InterestServicesCachingDecorator(InterestService interestService)
 {
     _decoratedInterestService = interestService;
 }
 public InterestAppService(IInterestService interestService)
 {
     _interestService = interestService;
 }
 public InterestsController(IMapper mapper, IInterestService interestService)
 {
     _mapper          = mapper;
     _interestService = interestService;
 }
Beispiel #14
0
 public PeopleSearchController(IPersonService personService, IInterestService interestService)
 {
     this.personService   = personService;
     this.interestService = interestService;
 }
 public CachedInterestService(IInterestService NextRate)
 {
     this.NextRate = NextRate;
 }
 public InterestViewComponent(IInterestService ınterestService)
 {
     _ınterestService = ınterestService;
 }
Beispiel #17
0
 public InterestController(IInterestService interestService)
 {
     _interestService = interestService;
 }
 public InterestController(IInterestService service, UserManager <ApplicationUser> manager)
 {
     this._service = service;
     this._manager = manager;
 }
 public InterestController(IInterestService interestService, ICategoryService categoryService)
 {
     this.interestService = interestService;
     this.categoryService = categoryService;
 }
Beispiel #20
0
 public InterestsController(IInterestService service)
 {
     _service = service;
 }