public IActionResult Add([FromBody] AddCalendarInput input) { var id = _calendarService.Add(input); return(Created("", new { id })); }