/// <summary>
        /// Gets the tax authority.
        /// </summary>
        /// <param name="revenueId">The revenue identifier.</param>
        /// <param name="jurisdictionId">The jurisdiction identifier.</param>
        /// <returns></returns>
        /// <exception cref="ApplicationException">Repository GetUserRoleActionsById</exception>
        public IList <ITaxAuthority> GetTaxAuthority(int revenueId, int jurisdictionId)
        {
            try
            {
                using (
                    var dbContext = (PitalyticsEntities)dbContextFactory.GetDbContext())
                {
                    var list = LookupQueries.GetTaxAuthorityInfo(dbContext, revenueId, jurisdictionId).ToList();

                    return(list);
                }
            }
            catch (Exception e)
            {
                throw new ApplicationException("Repository GetUserRoleActionsById", e);
            }
        }