public ActionResult Create(ProfileVacancy perfil)
        {
            if (ModelState.IsValid)
            {

                _ContextoProfile.Add<ProfileVacancy>(perfil);
                _ContextoProfile.SaveChanges( );
            }
            return View("ListProfileVacancy", _ContextoProfile.GetAll<ProfileVacancy>( ).ToList( ));
        }
        public ActionResult Edit(ProfileVacancy perfil)
        {
            ProfileVacancy perfilAlterado = _ContextoProfile.Get<ProfileVacancy>(perfil.Id);

            if (ModelState.IsValid)
            {
                TryUpdateModel(perfilAlterado);
                _ContextoProfile.SaveChanges( );
                return View("ListProfileVacancy", _ContextoProfile.GetAll<ProfileVacancy>( ).ToList( ));
            }
            return View( );
        }
        public ActionResult Delete(ProfileVacancy perfil)
        {
            ProfileVacancy perfilExcluido = _ContextoProfile.Get<ProfileVacancy>(perfil.Id);

            if (ModelState.IsValid)
            {
                _ContextoProfile.Delete<ProfileVacancy>(perfilExcluido);
                _ContextoProfile.SaveChanges( );
                return View("Sucess");
            }
            return View("Sucess");
        }