示例#1
0
 public MovieSystemData(IMovieSystemDbContext context)
 {
     this._context      = context;
     this._repositories = new Dictionary <Type, object>();
 }
示例#2
0
 public MovieRepository(IMovieSystemDbContext context)
     : base(context)
 {
 }
示例#3
0
 public GenericRepository(IMovieSystemDbContext context)
 {
     this.Context = context;
     this.Set     = context.Set <T>();
 }