SkyTour, Inc. - helicopter tours of Mt. Ranier Use Visual Studio to create and code a complete C\# program for SkyTour, Inc. that hosts helicopter tours of Mt. Ranier. Helicopters and small planes flying commercial passengers on tours must account for distribution of weight as well as follow insurance and FAA regs concerning manifest information. This ticket calculator and purchase system follows the specifications described here: - Your program should be a C\# Console Application using the .NET Framework - Your program should request the following data inputs from the user: 2 strings - passenger's first name and last name 1 int - passenger's age 1 real number - passenger's weight (in US pounds) at time of purchase - Your program should convert the weight in US pounds to kilograms and write out a report of the data entered and calculated to the output console, including a timestamp of the transaction. Here is a sample output: Passenger Name: Charles Costarella Passenger Age: 29 years Weight: 220.5lbs. (100.00Kg) price $100.00 Report Timestamp: [purchase date and time from .NET library] Your output format should match the example as closely as possible. Both pounds and kilos weight measurements must be printed on a single line of text output. Follow all the best practices we have discussed so far in the course, including: - Change History and "school" information - Code comments and documentation sections, and code layout - Identifier naming conventions (projectsamespaces are C\# identifiers) - You should produce both Debug and Release builds, test runs and test results - Your test plan should include carefully well-chosen test data - Solution file location and zip file structure (no separate folder for solution file) - UI design - (tell the user what the program does and how to use the software) - The "Report Timestamp" info should be coded to always print the current date and time when the program executes - use the standard.NET class DateTime. - For converting pounds to kilos, use 2.205 pounds per kilogram - Tickets are $1.00 US/kilo up to 100 kilos. If a passenger's weight exceeds 100 kilos, charge them $1.50 for each kilogram in excess of 100