Sample MVC project using .NET Core 2.0
Full CRUD of Books is supported.
- Add Title and ISBN search filters.
- Add stricter validation of ISBN-13 values.
- Prevent creation of books with duplicate ISBNs (database already restricts).
- Paginate results from Database.
Full CRUD of Customers is supported.
- Add Last Name search filter.
- Store geo coordiantes of customer.
- Paginate results from Database.
Create and Read of Book Sales is supported.
- Store Total Price on Book Sale instead of calculating it each time.
- Add ID, Customer Last Name, and ISBN filter.
- Paginate results from database.
- Link to Book and Customer from Book Sale Details page.