예제 #1
0
        }        //DelCamion

        public static ChoferVO GetChoferById(int IdChofer)
        {
            try
            {
                return(DALChofer.GetChoferById(IdChofer));
            }
            catch (Exception)
            {
                return(new ChoferVO());
            }
        }        //GetCamionById
예제 #2
0
 public static string DelChofer(int IdChofer)
 {
     try
     {
         ChoferVO camion = DALChofer.GetChoferById(IdChofer);
         if (camion.Disponibilidad)
         {
             DALChofer.DelChofer(IdChofer);
             return("Chofer Eliminado");
         }
         else
         {
             return("El Chofer se encuentra en una ruta o no está disponible");
         }
     }
     catch (Exception ex) { return(ex.Message); }
 }        //DelCamion