public IEnumerable <OmniDataFileLineModel> CreateMonthLineModels(
            FeeType feeType)
        {
            var netMonthlyReturns = _portfolio.GetReturnsInRange(_januaryToGivenMonth, feeType);

            return(netMonthlyReturns.Select(r => CreateMonthModel(r, feeType)));
        }