public SearchHistoryRepository(SmarketsMarvelContext context)
     : base(context)
 {
 }
Example #2
0
 public FanRepository(SmarketsMarvelContext context)
     : base(context)
 {
 }
 public BaseRepository(SmarketsMarvelContext context)
 {
     Context = context;
     DbSet   = Context.Set <TEntity>();
 }
 public UnitOfWork(SmarketsMarvelContext context)
 {
     this.context = context;
 }