예제 #1
0
 public void DeleteExigence(int id)
 {
     SDFactory.GetDataExigence().DeleteExigence(id);
 }
예제 #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));
 }
예제 #3
0
 public void AddExigence(string label, int fonctionnel, int type, string projet)
 {
     SDFactory.GetDataExigence().InsertExigence(new SBExigences(label, fonctionnel, type, projet));
 }
예제 #4
0
 public SBExigences GetById(int id)
 {
     return(SDFactory.GetDataExigence().GetById(id));
 }
예제 #5
0
 public List <SBExigences> GetExigencesByProjet(string id)
 {
     return(SDFactory.GetDataExigence().GetExigencesByProjet(id));
 }
예제 #6
0
 public List <SBExigences> GetExigences()
 {
     return(SDFactory.GetDataExigence().GetExigences());;
 }