Introduction • Installation Guide • Screenshots • Credits • License • Contributors
Library application that you can manage the books and it's users using Microsoft's ASP-NET MVC architecture. It has 2 panels which are Admin
and User
.
It uses MS-SQL | EntityFramework on DB side. Authentication and authorization processes are performed using Web Cookies
(aspNet form-auth).
Admin Actions | User Actions |
---|---|
Create, Update and Delete a User |
Borrow a Book |
Create, Update, Delete and Return a book |
Return the Book |
Get book(s) |
Get book(s) |
Get and Delete all auth Logs |
Get own profile auth Logs |
Update own profile credentials |
Update own profile credentials |
To clone and run this application, you'll need Git, ASP NET, MS-SQL and Visual Studio installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/Ctere1/LibraryMVC
# Go into the repository
$ cd LibraryMVC
After these steps, you should be able to open the project/solution with Visual Studio, build it and run it from there.
User can see information about all own books in a table on this page (e.g. borrowed books and due date expired books).
User can see all own book's details on this page (red lines means book's date expired).
User can see all library books and their details. Also user can
Borrow
the books on this page.For borrowing the book, user can choose a
IssuedTo
date on this page.User can see all own logs and their details on this page.
User can change own account credentials on this page.
Admin can see information about all library books and users in a table on this page (e.g. all books, due date expired books, active books, all users).
Admin can
Edit
,Create
andDelete
information about all library users. Also admin can see user's books on this page.Admin can
Edit
,Create
andDelete
information about all library books on this page.Admin can see and
Delete
all auth logs on this page.Admin can change own account credentials on this page.
This software uses the following packages:
- Microsoft.AspNet.Mvc
- Bootstrap
- EntityFramework
Copyright (c) 2022 Cemil TAN
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.