//NOT FUNCTIONAL

        public double CalcBmi(double weight, double height, int id)
        {
            var bmi = weight / (height * height);

            _sqlContext.AddBmi(bmi, id);
            return(bmi);
        }