public ActionResult <List <Agenda> > GetAgenda_All() { List <Agenda> list = new List <Agenda>(); list = _AgendaService.GetAgenda_All(); if (list == null) { return(BadRequest()); } return(Ok(list)); }