A nutritionist wants to create a web application that calculates the number of calories a person should consume daily based on their age, gender, weight, height, and activity level. activity level options are lightly_active, moderately_active The strongly extremely_active, and should be rendered as a dropdown list. Lightly active has and a value of 1.37, moderately active has a value of 1.55, and strongly active has a value of 1.9. The calculations for BMR and daily calorie intake are as follows: For men: BMR = (10 x weight in kg) + (6.25 x height in cm) - (5 x age in years) +5 For women: BMR = (10 x weight in kg) + (6.25 x height in cm) - (5 x age in years)-7 • Daily calorie intake = BMR x activity level value Questions Notes: The class name for this application is Nutrition.cs 1. Declare a property for Number+above. 2. Code the two radio buttons for gender (Male and Female) [1] 4. Validate the ID number of a person to be exactly 13 digits long For question [ 3,4 and 5 below, write only the line of code needed to.... 3. Validate the weight of a person such that it is between 20 and 60 kg [4] [2] [2] 5. Code the necessary namespace for the above decorations [1] 6. Activity levels are to be rendered via a dropdown list using Enum method; a. Declare the relevant property for activity levels [2] b. Code the Enum method [3] c. Write the code in the view to populate the dropdown list from the Enum method [5] 7. Create a method that will calculate the BMR for a person based on their age, gender, weight, and height. Declare the necessary variables if necessary. 8. Create a method that will calculate the daily calorie intake for a person based on the BMR and activity level. The activity option should be rendered as a dropdown list. [11] [14] 9 Code the controller for this annlication.​