/// <summary>
        /// Gets the jurisdiction.
        /// </summary>
        /// <returns></returns>
        /// <exception cref="ApplicationException">Repository GetJurisdiction</exception>
        public IList <IJurisdiction> GetJurisdiction()

        {
            try
            {
                using (var dbContext = (PitalyticsEntities)this.dbContextFactory.GetDbContext())
                {
                    var list = LookupQueries.GetJurisdictions(dbContext).ToList();
                    return(list);
                }
            }
            catch (Exception e)
            {
                throw new ApplicationException("Repository GetJurisdiction", e);
            }
        }