public DevolvedAdultEducationFundLineGroup WithFundLine(string title, IEnumerable <string> attributes)
        {
            var fundLine = BuildFundLine(title, attributes);

            FundLines.Add(fundLine);

            return(this);
        }
        public FundLineGroup WithFundLine(string title, IEnumerable <string> attributes, bool includeInTotals = true)
        {
            var fundLine = BuildFundLine(title, attributes, includeInTotals: includeInTotals);

            FundLines.Add(fundLine);

            return(this);
        }
        public FundLineGroup WithFundLine(string title, IEnumerable <byte> fundingSources, IEnumerable <int> transactionTypes)
        {
            var fundLine = BuildFundLine(title, fundingSources, transactionTypes);

            FundLines.Add(fundLine);

            return(this);
        }