Example #1
0
        public IActionResult Analize(string gender, float age, float waist, float hips, float neck,
                                     float height, float weight, bool hardMode)
        {
            var analizeResults = new AnalizeResults(gender, age, waist, hips, neck, height, weight, hardMode);

            return(View(analizeResults));
        }
Example #2
0
        public IActionResult Analize()
        {
            var analizeResults = new AnalizeResults();

            return(View(analizeResults));
        }