public ActionResult GetRol() { var result = rolRepository.GetRol(); if (result == null) { return(NotFound()); } return(Ok(result)); }