public RelyingPartyService(IRelyingPartyConfigurationDbContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }

            this.context = context;
        }
        public RelyingPartyService(EntityFrameworkServiceOptions options, IRelyingPartyConfigurationDbContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }

            this.options = options;
            this.context = context;
        }