Canguro.Model.Material.ConcreteDesignProps.ConcreteDesignProps C# (CSharp) Метод

ConcreteDesignProps() публичный Метод

Constructora que recibe todas las propiedades en unidades internacionales.
public ConcreteDesignProps ( float fc, float rebarFy, float rebarFys, bool isLightweight, float lwFactor ) : System
fc float
rebarFy float
rebarFys float
isLightweight bool
lwFactor float
Результат System
        public ConcreteDesignProps(float fc, float rebarFy, float rebarFys, bool isLightweight, float lwFactor)
        {
            this.fc = fc;
            this.rebarFy = rebarFy;
            this.rebarFys = rebarFys;
            this.isLightweightConcrete = isLightweight;
            this.lightweightFactor = lwFactor;
        }
ConcreteDesignProps