コード例 #1
0
ファイル: MashStep.cs プロジェクト: jlafshari/Homebrewing
        public MashStep(MashType type)
        {
            m_type = type;

            // decoction mash steps don't have any infusion water
            if (m_type == MashType.Decoction)
                m_infusionWaterTemperature = null;
        }
コード例 #2
0
ファイル: MashStep.cs プロジェクト: jlafshari/Homebrewing
        public MashStep(MashType type)
        {
            Type = type;

            // decoction mash steps don't have any infusion water
            if (Type == MashType.Decoction)
            {
                InfusionWaterTemperature = null;
            }
        }