Esempio n. 1
0
 // Get des places restantes
 public void GetNbPlacesRestantesNEW(int pVolId, int pPlaId, out int nbPlRes)
 {
     try {
         nbPlRes = EFPlanning.GetNbPlacesRestantesNEW(pVolId, pPlaId);
     }
     catch (Exception ex) {
         throw ex;
     }
 }
Esempio n. 2
0
        // get des dates d'un même vol avec un id
        public List <PLA_GetDatesMemeVolWithPlaId_Result> GetDatesMemeVol(int pVolId, int pPlaId)
        {
            List <PLA_GetDatesMemeVolWithPlaId_Result> oList = new List <PLA_GetDatesMemeVolWithPlaId_Result>();

            try {
                oList = EFPlanning.GetDatesMemeVol(pVolId, pPlaId);
            }
            catch (Exception ex) {
                throw ex;
            }
            return(oList);
        }
Esempio n. 3
0
        // get dates d'un vol
        public static List <PLA_GetDateByVolIdDateCritere_Result> GetDatesVol(int pId, DateTime dateCr) // selectionner les vols retours apres la date aller
        {
            List <PLA_GetDateByVolIdDateCritere_Result> oList = new List <PLA_GetDateByVolIdDateCritere_Result>();

            try {
                oList = EFPlanning.GetDatesVol(pId, dateCr);
            }
            catch (Exception ex) {
                throw ex;
            }
            return(oList);
        }
Esempio n. 4
0
        // USER
        // get dates de vol par id
        public static List <PLA_GetDateByVolId_Result> GetDatesVol(int pId)
        {
            List <PLA_GetDateByVolId_Result> oList = new List <PLA_GetDateByVolId_Result>();

            try {
                oList = EFPlanning.GetDatesVol(pId);
            }
            catch (Exception ex) {
                throw ex;
            }
            return(oList);
        }