USING C# SHARP
Operate a New Car Dealership selling (Pick your favorite make of car – BMW, AUDI, Toyota, Honda, Ford, Lamborghini, etc.). In order to use accurate data, you will be visiting the dealer’s web site to get models, packages and prices. We will only be selling 2020 models and you should limit your choices to 3 models and 3 styles of each model. Other model selections should display the message “Coming Soon”
Display an initial screen asking the user which model they are interested in – below is Toyota as an example
WELCOME TO (YOURNAME) TOYOTA
1. Purchase a car
a. Avalon
b. Camry
i. L $24,425
ii. LE $24,970
iii. XLE $29,455
c. Corolla
i. LE $20,050
ii. XLE $24,050
iii. XSE $25,550
d. Highlander
e. Prius
f. RAV 4
Requirements:
After selecting a vehicle, and a style (trim Level) the user will be asked to select a Package. The Driver Assist Package (20% of the car’s base price), a Navigation Package (10% of the car’s base price), a Panoramic Glass Moonroof (5 % of the car’s base price) are available for all cars. A user can select 0 or more packages. There are only two (2) colors for each car (you pick the colors)
The sales report should display a list of cars sold, including which packages were selected, the price of the car, packages and total price paid (including 8.25% sales tax). We do not need who the people are, just the cars that were sold. In addition, the report should list the total cars sold and the total prices before and after tax.
This program must use functions for all the features and should load the data into an array as it is selected (this will make it easier to print out the daily sales report. You can choose to load the data into structures
Any C# Compiler
for example:
using System;
namespace Sample
{
class Test
{
public static void Main(string[] args)
{
Console.WriteLine(" ");
Console.WriteLine(" ");
Console.Write(" ");
Console.Write(" ");
}
}
}
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme