Пример #1
0
 public async Task Post([FromBody] AuthorInputDto input)
 {
     var author = _mapper.Map <Author>(input);
     await _authorManager.InsertAsync(author);
 }