Beispiel #1
0
        public void AddAuthor(AuthorInputModel author)
        {
            var authorEntity = new Author
            {
                Name = author.Name
            };

            _bookRepo.AddAuthor(authorEntity);
        }
Beispiel #2
0
 public void AddAuthor(Author author)
 {
     //adds new author
     _bookRepo.AddAuthor(author);
 }