public IHttpActionResult ExcluiAgenda(int id)
        {
            var retorno = _agendaService.Exclui(id);

            if (!retorno.Status)
            {
                return(new InvalidListMessageResult(retorno.Message));
            }

            return(Ok(retorno));
        }