Exemplo n.º 1
0
 public void DeleteEtudiant(Etudiant etudiant)
 {
     etudiantRepo.Remove(etudiant);
 }
Exemplo n.º 2
0
 public void EditEtudiant(Etudiant oldEtudiant, Etudiant newEtudiant)
 {
     etudiantRepo.Set(oldEtudiant, newEtudiant);
 }
Exemplo n.º 3
0
 public void EditProduct(Etudiant oldetudiant, Etudiant newetudiant)
 {
     EtudiantRepo.Set(oldetudiant, newetudiant);
 }
Exemplo n.º 4
0
 public void CreateEtudiant(Etudiant etudiant)
 {
     etudiantRepo.Add(etudiant);
 }
Exemplo n.º 5
0
 private void Set(Etudiant oldEtudiant, Etudiant newEtudiant)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 6
0
 public void CreateProduct(Etudiant etudiant)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 private void Add(Etudiant etudiant)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 8
0
 internal void Add(Etudiant etudiant)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 9
0
 public Etudiant(string dbFolder)
 {
     etudiantRepo = new Etudiant(dbFolder);
 }
Exemplo n.º 10
0
 public void CreateProduct(Etudiant etudiant)
 {
     etudiantRepo.Add(etudiant);
 }
Exemplo n.º 11
0
 public void CreateEtudiant(Etudiant etudiant)
 {
     etudiantRepo.Remove(etudiant);
 }