} //DelCamion public static ChoferVO GetChoferById(int IdChofer) { try { return(DALChofer.GetChoferById(IdChofer)); } catch (Exception) { return(new ChoferVO()); } } //GetCamionById
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