Esempio n. 1
0
 public HomeController(
     ICurriculumVitaesService cvs,
     ICertificationsService certifications,
     IEducationsService educations)
 {
     this.cvs            = cvs;
     this.certifications = certifications;
     this.educations     = educations;
 }
Esempio n. 2
0
        public VisitorController(ILogger <VisitorController> logger, IUserProfileService userProfileService,
                                 IProjectService projectService, IEducationsService educationService, IUserServicesService userServices)
        {
            _logger = logger;

            _userProfileService = userProfileService;
            _projectService     = projectService;
            _educationService   = educationService;
            _userService        = userServices;
            _visitor            = new VisitorViewModel();
        }
 public ResumesController(IEducationsService educationsService,
                          IJobSeekerService jobSeekerService,
                          ISkillService skillService,
                          IResumeService resumeService,
                          UserManager <User> userManager,
                          IWorkHistoryService workHistoryService)
 {
     this.educationsService  = educationsService;
     this.jobSeekerService   = jobSeekerService;
     this.resumeService      = resumeService;
     this.skillService       = skillService;
     this.userManager        = userManager;
     this.workHistoryService = workHistoryService;
 }
Esempio n. 4
0
 public DashboardController(ILogger <DashboardController> logger, IUserProfileService userProfileService,
                            IProjectService projectService, IEducationsService educationService, IUserServicesService userServices)
 {
     _logger             = logger;
     _profile            = new AllUserProfileViewModel();
     _singleUser         = new UserProfileViewModel();
     _userProfileService = userProfileService;
     _projectService     = projectService;
     _educationService   = educationService;
     _userService        = userServices;
     _serviceViewModel   = new ServiceViewModel();
     _projectViewModel   = new EditProjectViewModel();
     _educationViewModel = new EducationViewModel();
 }
Esempio n. 5
0
 public HomeController(
     IContactInformationService contactInformationService,
     IEducationsService educationService,
     ISkillsService skillsService,
     ICertificationsService certificationService,
     ICoursesService coursesService,
     IProjectsService projectsService,
     IExperiencesService experienceService)
 {
     this.contactInformationService = contactInformationService;
     this.educationService          = educationService;
     this.skillsService             = skillsService;
     this.certificationService      = certificationService;
     this.coursesService            = coursesService;
     this.projectsService           = projectsService;
     this.experienceService         = experienceService;
 }
 public EducationsController(IEducationsService educationsService, UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager)
 {
     this.educationsService = educationsService;
     this.userManager       = userManager;
     this.signInManager     = signInManager;
 }
 public EducationController(IEducationsService provider)
     : base(provider)
 {
     this.dataProvider = provider;
 }