Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 965 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 965 Bytes

Films project 🎬

Description ✏️

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.

My Gif

Stack 📋

  • ASP.NET Core MVC
  • REST Api
  • JWT
  • SQL Server
  • 3tier
  • EF6
  • React
  • Bootstrap

Stack description 💻

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.