public ScopeStore(EntityFrameworkServiceOptions options, IScopeConfigurationDbContext context)
        {
            if (context == null) throw new ArgumentNullException("context");

            this.options = options;
            this.context = context;
        }
Example #2
0
        public ScopeStore(IScopeConfigurationDbContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }

            this.context = context;
        }
Example #3
0
        public ScopeStore(EntityFrameworkServiceOptions options, IScopeConfigurationDbContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }

            this.options = options;
            this.context = context;
        }
Example #4
0
 public ScopeDataStore(IScopeConfigurationDbContext context)
     : base(context)
 {
 }
        public ScopeStore(IScopeConfigurationDbContext context)
        {
            if (context == null) throw new ArgumentNullException("context");

            this.context = context;
        }
 public ScopeCustomService(IScopeConfigurationDbContext context) : base(context)
 {
 }