コード例 #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
ファイル: AuteurRepo.cs プロジェクト: MariamAv/ProjetServeur
 public AuteurRepo(RevuesContext context)
 {
     this.context = context;
 }
コード例 #5
0
ファイル: CrudSQLRepo.cs プロジェクト: MariamAv/ProjetServeur
 public CrudSQLRepo(RevuesContext context)
 {
     this.context = context;
     this.table   = context.Set <T>(); // context.Chercheur;
 }