public SearchService(IProfileRepository rep, ISkillRepository srep, ISkillTypeRepository strep, ISkillAreaRepository sarep)
 {
     this._profiles = rep;
     this._skillsRep = srep;
     this._skillTypesRep = strep;
     this._skillAreaRep = sarep;
 }
 public SkillAreaService(ISkillAreaRepository rep)
 {
     this._skillAreaRepository = rep;
 }