Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 812 Bytes

File metadata and controls

35 lines (22 loc) · 812 Bytes

Book Sales Web App

Sample MVC project using .NET Core 2.0

Books

Full CRUD of Books is supported.

Future Improvements:
  • 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.

Customers

Full CRUD of Customers is supported.

Future Improvements:
  • Add Last Name search filter.
  • Store geo coordiantes of customer.
  • Paginate results from Database.

Book Sales

Create and Read of Book Sales is supported.

Future Improvements:
  • 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.