예제 #1
0
 public NumeroRepo(RevuesContext context)
 {
     this.context = context;
 }
예제 #2
0
 public ArticleRepo(RevuesContext context) : base(context)
 {
 }
예제 #3
0
 public RevueRepo(RevuesContext context)
 {
     this.context = context;
 }
예제 #4
0
 public AuteurRepo(RevuesContext context)
 {
     this.context = context;
 }
예제 #5
0
 public CrudSQLRepo(RevuesContext context)
 {
     this.context = context;
     this.table   = context.Set <T>(); // context.Chercheur;
 }