The task to implement the library in ASP.NET MVC
Main classes:
Publisher
Name: string
Author
Name: string
DateOfBirth: Date
DateOfDeath: Date?
Book
Id: int
Name: string
Publisher: Publisher
Authors: IEnumerable
PublishDate: Date
PageCount: int
ISBN: string
Implement controllers for each of the classes, for basic actions - Creating, Receiving, Modifying, Deleting.
If an author or publisher is deleted, they should be missing from books using this data, for example. the author is deleted,
the book where it appears, the deleted author disappears from the list of authors.
Generate tables with helpers