Example #1
0
 public HomeController(
     ICurriculumVitaesService cvs,
     ICertificationsService certifications,
     IEducationsService educations)
 {
     this.cvs            = cvs;
     this.certifications = certifications;
     this.educations     = educations;
 }
Example #2
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;
 }
Example #3
0
 public CertificationsController(ICertificationsService servicesProvider)
     : base(servicesProvider)
 {
     this.dataProvider = servicesProvider;
 }