private void UpdateCosts(Order choice)
        {
            
            var prodList = _productManager.GetAllProducts();
            var prod = prodList.Find(y => y.ProductType == choice.ProductType);
            var c = new Calculator();
            c.CalculateValues(choice, prod);

        }
        private void UpDateProductInfo(Order choice)
        {


         

            var prodList = _productManager.GetAllProducts();
            var prod = prodList.Find(y => y.ProductType == choice.ProductType);

            choice.CostPerSquareFoot = prod.CostPerSquareFoot;
            choice.LaborCostPerSquareFoot = prod.LaborCostPerSquareFoot;

            var c = new Calculator();
            c.CalculateValues(choice, prod);
        }