コード例 #1
0
 public Dal()
 {
     bdd = new BddContext();
 }
コード例 #2
0
 public Dal()
 {
     this._context = new BddContext();
 }
コード例 #3
0
ファイル: Dal.cs プロジェクト: gBusato/Projects
 public Dal()
 {
     // Constructeur par defaut
     // Lors de l'instanciation d'un DAL (Data Access Layer) on créer un context qui va nous permettre d'acceder aux données.
     _bdd = new BddContext();
 }
コード例 #4
0
ファイル: Dal.cs プロジェクト: jordanDruart/ChoixResto
 public Dal()
 {
     bdd = new BddContext();
 }
コード例 #5
0
 public DalCorrection()
 {
     bdd = new BddContext();
 }
コード例 #6
0
ファイル: Resto.cs プロジェクト: Cardman/tutorials
 public Dal()
 {
     bdd = new BddContext();
     NbInst++;
 }