public async Task <ActionResult <UpdateViewModel> > ActivateRole(int id) { try { var resultado = await _roleRepository.Activate(id); if (!resultado) { return(BadRequest()); } return(NoContent()); } catch (Exception excepcion) { return(BadRequest()); } }