Example #1
0
        public UserStore(NorthOpsEntities db)
        {
            if (db == null)
            {
                throw new ArgumentNullException("db");
            }

            this.db = db;
        }
Example #2
0
 public GenericRepository(NorthOpsEntities context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
Example #3
0
 public RoleStore(NorthOpsEntities db)
 {
     this.db = db;
 }