Ejemplo n.º 1
0
 public static DataTable obtenerParteImagen(int idParte)
 {
     try
     {
         return(ParteDAL.obtenerParteImagen(idParte));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
 public static DataTable obtenerParteTabla(int idProveedor)
 {
     try
     {
         return(ParteDAL.obtenerParteTabla(idProveedor));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 3
0
 public static DataTable obtenerVehiculoParte(int idParte)
 {
     try
     {
         return(ParteDAL.obtenerVehiculoParte(idParte));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 4
0
 public static DataTable obtenerParte()
 {
     try
     {
         return(ParteDAL.obtenerParte());
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 5
0
 public static int actualizarImagenParte(int noSeq, string ruta)
 {
     try
     {
         return(ParteDAL.actualizarImagenParte(noSeq, ruta));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 6
0
 public static int guardarVehiculo(Vehiculo vehi, int noSeq, int idParte, int idCategoria)
 {
     try
     {
         return(ParteDAL.guardarVehiculo(vehi, noSeq, idParte, idCategoria));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 7
0
 public static int guardarImagen(int idParte, int idProveedor, string rutaImagen, int id)
 {
     try
     {
         return(ParteDAL.guardarImagen(idParte, idProveedor, rutaImagen, id));
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 8
0
 public static int guardarParte(ParteProveedor parteProveedor)
 {
     try
     {
         return(ParteDAL.guardarParte(parteProveedor));
     }
     catch (Exception)
     {
         throw;
     }
 }