public async Task <ActionResult> AddAsync(ConferenceDetailsDto dto) { await _conferenceService.AddAsync(dto); AddResourceIdHeader(dto.Id); return(CreatedAtAction(nameof(Get), new { id = dto.Id }, null)); }