예제 #1
0
        public int AddResposable(string tri)
        {
            SDFactory.GetDataResponsable().InsertResponsable(tri);
            Bean.SBResponsable Res = SDFactory.GetDataResponsable().GetByTri(tri);

            return(Res.Id);
        }
예제 #2
0
 public Bean.SBProjet GetById(string id)
 {
     return(SDFactory.GetDataProjet().GetById(id));
 }
예제 #3
0
 public SBTypeExigence GetById(int id)
 {
     return(SDFactory.GetDataType().GetById(id));
 }
예제 #4
0
 public void UpdateExigence(int Id, string label, int fonctionnel, int type, string projet)
 {
     SDFactory.GetDataExigence().UpdateExigence(new SBExigences(Id, label, fonctionnel, type, projet));
 }
예제 #5
0
 public SBExigences GetById(int id)
 {
     return(SDFactory.GetDataExigence().GetById(id));
 }
예제 #6
0
 public List <SBExigences> GetExigences()
 {
     return(SDFactory.GetDataExigence().GetExigences());;
 }
예제 #7
0
 public Bean.SBResponsable GetById(int ID)
 {
     return(SDFactory.GetDataResponsable().GetById(ID));
 }
예제 #8
0
 public List <Bean.SBResponsable> GetResponsables()
 {
     return(SDFactory.GetDataResponsable().GetResponsables());
 }
예제 #9
0
 public void DeleteJalon(int id)
 {
     SDFactory.GetDataJalon().DeleteJalon(id);
 }
예제 #10
0
 public void UpdateJalon(int Id, string label, DateTime date, int responsable, DateTime livraison)
 {
     SDFactory.GetDataJalon().updateJalon(new SBJalon(Id, label, date, responsable, livraison));
 }
예제 #11
0
 public void AddJalon(string label, DateTime date, int responsable)
 {
     SDFactory.GetDataJalon().InsertJalon(new SBJalon(label, date, responsable));
 }
예제 #12
0
 public SBJalon GetById(int id)
 {
     return(SDFactory.GetDataJalon().GetById(id));
 }
예제 #13
0
 public List <SBJalon> GetJalons()
 {
     return(SDFactory.GetDataJalon().GetJalon());;
 }
예제 #14
0
 public int count()
 {
     return(SDFactory.GetDataType().count());
 }
예제 #15
0
 public void AddTypeExigence(string label)
 {
     SDFactory.GetDataType().InsertType(new SBTypeExigence(label));
 }
예제 #16
0
 public void UpdateProjet(string Id, string LeNom, int LeResponsable, DateTime LeDebut)
 {
     SDFactory.GetDataProjet().UpdateProjet(new Bean.SBProjet(Id, LeNom, LeResponsable, LeDebut));
 }
예제 #17
0
 public void DeleteProjet(string id)
 {
     SDFactory.GetDataProjet().DeleteProjet(id);
 }
예제 #18
0
 public List <SBTache> GetTaches()
 {
     return(SDFactory.GetDataTache().GetTaches());;
 }
예제 #19
0
 public Bean.SBResponsable GetByTrigramme(string tri)
 {
     return(SDFactory.GetDataResponsable().GetByTri(tri));
 }
예제 #20
0
 public SBTache GetById(int id)
 {
     return(SDFactory.GetDataTache().GetById(id));
 }
예제 #21
0
 public void AddTache(string nom, string description, int responsable, int jalon, int nbJour, int tachePrecedente, int etat, DateTime datePrevu)
 {
     SDFactory.GetDataTache().InsertTache(new SBTache(nom, description, responsable, jalon, nbJour, tachePrecedente, etat, datePrevu));
 }
예제 #22
0
 public void UpdateTache(int id, string nom, string description, int responsable, int jalon, int nbJour, int tachePrecedente, int etat, DateTime datePrevu, DateTime dateReelle)
 {
     SDFactory.GetDataTache().UpdateTache(new SBTache(id, nom, description, responsable, jalon, nbJour, tachePrecedente, etat, datePrevu, dateReelle));
 }
예제 #23
0
 public List <SBExigences> GetExigencesByProjet(string id)
 {
     return(SDFactory.GetDataExigence().GetExigencesByProjet(id));
 }
예제 #24
0
 public void DeleteTache(int id)
 {
     SDFactory.GetDataTache().DeleteTache(id);
 }
예제 #25
0
 public void AddExigence(string label, int fonctionnel, int type, string projet)
 {
     SDFactory.GetDataExigence().InsertExigence(new SBExigences(label, fonctionnel, type, projet));
 }
예제 #26
0
 public List <Bean.SBProjet> GetProjects()
 {
     return(SDFactory.GetDataProjet().GetProjets());
 }
예제 #27
0
 public void DeleteExigence(int id)
 {
     SDFactory.GetDataExigence().DeleteExigence(id);
 }
예제 #28
0
 public List <SBTypeExigence> GetType()
 {
     return(SDFactory.GetDataType().GetTypes());;
 }