コード例 #1
0
        public FineSeparator(ManureSeparator toCopy)
        {
            if (toCopy.Style != ManureSeperatorStyles.FineSeparator)
            {
                throw new ArgumentException("toCopy.Style is not of proper type");
            }

            Copy(toCopy);
        }
コード例 #2
0
        public NutrientRecovery(ManureSeparator toCopy)
        {
            if (toCopy.Style != ManureSeperatorStyles.NutrientRecovery)
            {
                throw new ArgumentException("toCopy.Style is not of proper type");
            }

            Copy(toCopy);
        }
コード例 #3
0
        public AnaerobicDigester(ManureSeparator toCopy)
        {
            if (toCopy.Style != ManureSeperatorStyles.AnaerobicDigester)
            {
                throw new ArgumentException("toCopy.Style is not of proper type");
            }

            Copy(toCopy);
        }