コード例 #1
0
 public int CreerCampagne(string unIntitule, string unObjectif, DateTime uneDateDebut, DateTime uneDateFin, int unIdPublic, int unIdEmploye)
 {
     Campagne laCampagne;
     Public unPublic = new Public(unIdPublic);
     Employe unEmploye = new Employe(unIdEmploye);
     laCampagne = new Campagne( unIntitule, unObjectif, uneDateDebut, uneDateFin, unPublic, unEmploye);
     return CampagneDAO.GetInstanceDAOCampagne().AjoutCampagne(laCampagne);
 }
コード例 #2
0
ファイル: Campagne.cs プロジェクト: Justinjr/ppecampagne
 public Campagne(string unIntitule, string unObjectif, DateTime uneDateDebut, DateTime uneDateFin, Public unIdPublic, Employe unIdEmploye)
 {
     intitule = unIntitule;
     objectif = unObjectif;
     dateDebut = uneDateDebut;
     dateFin = uneDateFin;
     idPublic = unIdPublic;
     idEmploye = unIdEmploye;
 }