Пример #1
0
        public string EditarViaje(int nroTransporte, string transportista, string trailer, string tracto, int codOrigen, int codDestino, string rutConductor, string nombreConductor)
        {
            try
            {
                string _resp = _context.Track_EditarViaje(nroTransporte, transportista, trailer, tracto, codOrigen, codDestino, rutConductor, nombreConductor).FirstOrDefault().Respuesta;

                return(_resp);
            }
            catch (Exception)
            {
                return("Se ha producido un error.");
            }
        }