Exemplo n.º 1
0
        public int AddResposable(string tri)
        {
            SDFactory.GetDataResponsable().InsertResponsable(tri);
            Bean.SBResponsable Res = SDFactory.GetDataResponsable().GetByTri(tri);

            return(Res.Id);
        }
Exemplo n.º 2
0
 public Bean.SBProjet GetById(string id)
 {
     return(SDFactory.GetDataProjet().GetById(id));
 }
Exemplo n.º 3
0
 public SBTypeExigence GetById(int id)
 {
     return(SDFactory.GetDataType().GetById(id));
 }
Exemplo n.º 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));
 }
Exemplo n.º 5
0
 public SBExigences GetById(int id)
 {
     return(SDFactory.GetDataExigence().GetById(id));
 }
Exemplo n.º 6
0
 public List <SBExigences> GetExigences()
 {
     return(SDFactory.GetDataExigence().GetExigences());;
 }
Exemplo n.º 7
0
 public Bean.SBResponsable GetById(int ID)
 {
     return(SDFactory.GetDataResponsable().GetById(ID));
 }
Exemplo n.º 8
0
 public List <Bean.SBResponsable> GetResponsables()
 {
     return(SDFactory.GetDataResponsable().GetResponsables());
 }
Exemplo n.º 9
0
 public void DeleteJalon(int id)
 {
     SDFactory.GetDataJalon().DeleteJalon(id);
 }
Exemplo n.º 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));
 }
Exemplo n.º 11
0
 public void AddJalon(string label, DateTime date, int responsable)
 {
     SDFactory.GetDataJalon().InsertJalon(new SBJalon(label, date, responsable));
 }
Exemplo n.º 12
0
 public SBJalon GetById(int id)
 {
     return(SDFactory.GetDataJalon().GetById(id));
 }
Exemplo n.º 13
0
 public List <SBJalon> GetJalons()
 {
     return(SDFactory.GetDataJalon().GetJalon());;
 }
Exemplo n.º 14
0
 public int count()
 {
     return(SDFactory.GetDataType().count());
 }
Exemplo n.º 15
0
 public void AddTypeExigence(string label)
 {
     SDFactory.GetDataType().InsertType(new SBTypeExigence(label));
 }
Exemplo n.º 16
0
 public void UpdateProjet(string Id, string LeNom, int LeResponsable, DateTime LeDebut)
 {
     SDFactory.GetDataProjet().UpdateProjet(new Bean.SBProjet(Id, LeNom, LeResponsable, LeDebut));
 }
Exemplo n.º 17
0
 public void DeleteProjet(string id)
 {
     SDFactory.GetDataProjet().DeleteProjet(id);
 }
Exemplo n.º 18
0
 public List <SBTache> GetTaches()
 {
     return(SDFactory.GetDataTache().GetTaches());;
 }
Exemplo n.º 19
0
 public Bean.SBResponsable GetByTrigramme(string tri)
 {
     return(SDFactory.GetDataResponsable().GetByTri(tri));
 }
Exemplo n.º 20
0
 public SBTache GetById(int id)
 {
     return(SDFactory.GetDataTache().GetById(id));
 }
Exemplo n.º 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));
 }
Exemplo n.º 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));
 }
Exemplo n.º 23
0
 public List <SBExigences> GetExigencesByProjet(string id)
 {
     return(SDFactory.GetDataExigence().GetExigencesByProjet(id));
 }
Exemplo n.º 24
0
 public void DeleteTache(int id)
 {
     SDFactory.GetDataTache().DeleteTache(id);
 }
Exemplo n.º 25
0
 public void AddExigence(string label, int fonctionnel, int type, string projet)
 {
     SDFactory.GetDataExigence().InsertExigence(new SBExigences(label, fonctionnel, type, projet));
 }
Exemplo n.º 26
0
 public List <Bean.SBProjet> GetProjects()
 {
     return(SDFactory.GetDataProjet().GetProjets());
 }
Exemplo n.º 27
0
 public void DeleteExigence(int id)
 {
     SDFactory.GetDataExigence().DeleteExigence(id);
 }
Exemplo n.º 28
0
 public List <SBTypeExigence> GetType()
 {
     return(SDFactory.GetDataType().GetTypes());;
 }