Exemple #1
0
 public Repository(MiySongDbContext context)
 {
     Context   = context;
     _entities = Context.Set <TEntity>();
 }
Exemple #2
0
 public SongRepository(MiySongDbContext context) : base(context)
 {
 }
 public SongRecordRepository(MiySongDbContext context) : base(context)
 {
     this.DbChangeHandle += (object sender, EventArgs e) =>
     {
     };
 }