// POST: api/<AuthorsController>
        public async Task <ActionResult <AuthorDto> > AddOrUpdate([FromBody] AuthorDto author)
        {
            var result = await _authorsManager.AddOrUpdateAsync(author);

            return(Ok(result));
        }