public string EmitirVenta(VENTAS ventas, List <DETALLE_VENTAS> listaDetalle, string reservas)
 {
     try
     {
         VentasDAL ventasDAL = new VentasDAL();
         return(ventasDAL.EmitirVents(ventas, listaDetalle, reservas));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }