public CvsController
 (
     ICandidateCvService cvs
 )
 {
     this.cvs = cvs;
 }
示例#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;
 }
示例#5
0
 public SkillsController(ICandidateCvService cvs, ISkillService repo) : base(cvs)
 {
     this.repo = repo;
 }
示例#6
0
 public WorksController(ICandidateCvService cvs, IWorkService repo) : base(cvs)
 {
     this.repo = repo;
 }