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