/// <summary>
        /// Gets the income type by jurisdiction.
        /// </summary>
        /// <param name="jurisdictionId">The jurisdiction identifier.</param>
        /// <returns></returns>
        /// <exception cref="ApplicationException">Repository GetIncomeTypeByJurisdiction</exception>
        public IEnumerable <IJurisdictionIncomeType> GetIncomeTypeByJurisdiction(int jurisdictionId)
        {
            try
            {
                var dbContext = (PitalyticsEntities)this.dbContextFactory.GetDbContext();
                {
                    var aRecord = LookupQueries.GetIncomeTypeByJurisdiction(dbContext, jurisdictionId);

                    return(aRecord);
                }
            }
            catch (Exception e)
            {
                throw new ApplicationException("Repository GetIncomeTypeByJurisdiction", e);
            }
        }