private Producto ObtenerPreciosXIDSucursal(string _IDSucursal)
 {
     try
     {
         Producto_Negocio ProdNeg = new Producto_Negocio();
         return(ProdNeg.ObtenerPreciosXIDSucursal(new Producto {
             IDProducto = IDProducto, IDSucursal = _IDSucursal, Conexion = Comun.Conexion
         }));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }