Create a ASP.NET Movie-Ticket application where a user interacts with a connected SQL Server database. The user can select to buy tickets from several movies different movies.
A user can buy the following tickets:
General Admission ($15.00)
Senior Citizen & Children (<13 years old) ($5.00)
Tuesday special ($5.00)
Users that have accounts with this theater will have a 20% discount when ordering tickets.
A user that does not have an account can register and create an account. The database that holds the account should have the user id account number, first name and last name. Use a structure to store the user's info.
Once the user has made their selection, a screen will be displayed of the movie they bought a ticket for, the types and numbers of tickets purchased and their name. The user's name should be acquired from the previously acquired structure.
An administrator should be able to view the database of registered users and perform CRUD operations. Both a Registered user and an administrator need to login to the system . But only the administrator should be able to view the database(s).
A non registered user does not need to login and should be able to purchase a ticket