예제 #1
0
        public UserRepository(DbContext db)
        {
            if (db == null)
                throw new ArgumentNullException("db");

            this._db = db;
        }
예제 #2
0
 public ConnectionRepository(DbContext db)
 {
     this._db = db;
 }
예제 #3
0
 public AffinityTracker(DbContext context)
 {
     this._context = context;
 }