Example #1
0
        public static bool delVuelos(Int32 id)
        {
            BoletosAvionBO mydSolicitudesBO = new BoletosAvionBO();
            object solic = HttpContext.Current.Session["n_solicitud"];

           if  (mydSolicitudesBO.BorraVuelos(solic.ToString(), id) == true) {
               return true;
           }
           else{
               return false;
           }

        }