示例#1
0
        public double CalcSoilVolume(TankShape tankShape, double soilHeight)
        {
            ITank  tank   = GetTank(tankShape, TankProperties);
            double result = tank.CalcSoilVolume(soilHeight);

            return(result);
        }