Exemplo n.º 1
0
        public ActionResult <Agenda> Create([FromBody] Agenda agenda)
        {
            _agendaService.Create(agenda);

            return(CreatedAtRoute("GetAgenda", new { id = agenda.AgendaId }, agenda));
        }