// GET: Skill
 public async Task <IActionResult> Index()
 {
     //var skillsQuery = _context.Skills.Include(s => s.Generalarea).Include(s => s.Prof);
     return(View(await repo.AllAsync()));
 }