KST Video is a ASP.NET Web Application using .NET FRAMEWORK (4.8 Recommended) that allows users (ApplicationUser) to queue up an order to be sent over to KST Video to checkout rentals.
1. Data This is where we setup our database using Entity Framework
i. Video
ii. Genre
iii BasketLine
iv. VideoImage
v. EmailClient
2. Models The messenger that helps the data and presentation tiers communicate. Examples of services include authentication and authorization
a. Create
b. Detail
c. Edit
d. ListItems
3. Services View Models represent the data that we want to show on the page. They are useful because you can pull specific properties from multiple tables
### registering
1. Run the application, and it should open your browser.
2. Register a user
Key | Value | Type | |
---|---|---|---|
1 | Required | string | |
2 | Password | Req | str |
3 | ConfirmPassword | Req | str |
4 | FirstName | Req | str |
5 | LastName | Req | str |
Name | Type | information |
---|---|---|
Name | string | Required |
RentalPrice | decimal | Required |
ImageName | string | Required |
Name | Type | information |
---|---|---|
Name | string | Required |
Name | Type | information |
---|---|---|
ID | integer | Required |
BasletID | integer | Required |
VideoID | integer | Required |
DateAdded | datetime | Required |
Name | Type | information |
---|---|---|
SMTPAddress | string | Required |
FromAddress | string | Required |
Password | string | Required |
Port | int | Required |