This is a service for creating selections of movies, viewing their information, and searching for them.
There is registration, and login to a personal account. There is also an administrator account that has access to do Create-Read-Update-Delete operations with the movies.
- ASP.NET Core MVC
- REST Api
- JWT
- SQL Server
- 3tier
- EF6
- React
- Bootstrap
Project has two parts - back-end on ASP.NET Core MVC and front-end on ReactJs library. The first one has a 3tier architecture:
- DAL (Data access layer)
- BLL (Business logic layer)
- UI (Here it is API Controllers layer)
Registration and login are implemented by using JWT authentication.
Data is stored in the SQL Server database. EF6 was used to access the data.
Bootstrap was used in the front-end part.