Esempio n. 1
0
 public void DeleteExigence(int id)
 {
     SDFactory.GetDataExigence().DeleteExigence(id);
 }
Esempio n. 2
0
 public void UpdateExigence(int Id, string label, int fonctionnel, int type, string projet)
 {
     SDFactory.GetDataExigence().UpdateExigence(new SBExigences(Id, label, fonctionnel, type, projet));
 }
Esempio n. 3
0
 public void AddExigence(string label, int fonctionnel, int type, string projet)
 {
     SDFactory.GetDataExigence().InsertExigence(new SBExigences(label, fonctionnel, type, projet));
 }
Esempio n. 4
0
 public SBExigences GetById(int id)
 {
     return(SDFactory.GetDataExigence().GetById(id));
 }
Esempio n. 5
0
 public List <SBExigences> GetExigencesByProjet(string id)
 {
     return(SDFactory.GetDataExigence().GetExigencesByProjet(id));
 }
Esempio n. 6
0
 public List <SBExigences> GetExigences()
 {
     return(SDFactory.GetDataExigence().GetExigences());;
 }