public ActionResult Delete(UILanguage objEntidad)
 {
     try
     {
         // TODO: Add update logic here
         UILanguageBL BL = new UILanguageBL();
         BL.EliminarIdiomas(objEntidad);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }