public CvsController
 (
     ICandidateCvService cvs
 )
 {
     this.cvs = cvs;
 }
Esempio n. 2
0
 public CvGenericListCrudController
 (
     ICandidateCvService cvs
 )
 {
     this.cvs = cvs;
 }
 public LanguagesController(ICandidateCvService cvs, ILanguageService repo) : base(cvs)
 {
     this.repo = repo;
 }
 public EducationsController(ICandidateCvService cvs, IEducationService repo) : base(cvs)
 {
     this.repo = repo;
 }
Esempio n. 5
0
 public SkillsController(ICandidateCvService cvs, ISkillService repo) : base(cvs)
 {
     this.repo = repo;
 }
Esempio n. 6
0
 public WorksController(ICandidateCvService cvs, IWorkService repo) : base(cvs)
 {
     this.repo = repo;
 }