Ejemplo n.º 1
0
        public SBExigences GetById(int id)
        {
            SBExigences E = null;

            foreach (DataSet.ExigenceRow Ex in MyAdapter.GetById(id))
            {
                E = new SBExigences(Ex.Id, Ex.Label, Ex.Fonctionnel, Ex.Type, Ex.Projet);
            }

            return(E);
        }
Ejemplo n.º 2
0
 public void UpdateExigence(SBExigences E)
 {
     MyAdapter.UpdateExigence(E.Label, E.Fonctionnel, E.type, E.Projet, E.Id);
 }
Ejemplo n.º 3
0
 public void InsertExigence(SBExigences E)
 {
     MyAdapter.InsertExigence(E.Label, E.Fonctionnel, E.type, E.Projet);
 }