public int ModificarDetalleDevolucion(int id_Dt, int codigo_productodtd, long valor_productodtd, int cantidad_productodtd)
 {
     Datos.Detalle_devolucion acceso = new Datos.Detalle_devolucion();
     return(acceso.Modificar_Detalle_Devolucion(id_Dt, codigo_productodtd, valor_productodtd, cantidad_productodtd));
 }
 public int EliminarDetalleDevolucion(int id_detalle_devolucion)
 {
     Datos.Detalle_devolucion acceso = new Datos.Detalle_devolucion();
     return(acceso.Eliminar_Detalle_Devolucion(id_detalle_devolucion));
 }
 public int ingresar_Detalle_devolucion(int codigo_productodtd, long valor_productodtd, int cantidad_productodtd, int codigo_devolucion_fk)
 {
     Datos.Detalle_devolucion acceso = new Datos.Detalle_devolucion();
     return(acceso.insertar_detalle_devolucion(codigo_productodtd, valor_productodtd, cantidad_productodtd, codigo_devolucion_fk));
 }