public void ConsultaListaProductoPrecioPUBLICO(ref float precio, Sesion sesion, int Id_Prd)
 {
     try
     {
         CD_ProductoPrecios claseCapaDatos = new CD_ProductoPrecios();
         claseCapaDatos.ConsultaListaProductoPrecioPUBLICO(ref precio, sesion, Id_Prd);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void ModificarProductoPrecios(ProductoPrecios productoPrecio, string Conexion, ref int verificador)
 {
     try
     {
         CD_ProductoPrecios claseCapaDatos = new CD_ProductoPrecios();
         claseCapaDatos.ModificarProductoPrecios(productoPrecio, Conexion, ref verificador);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void ConsultaListaProductoPrecioAAA(ref float precio, int Id_Emp, int Id_Cd, int Id_Prd, string Conexion)
 {
     try
     {
         CD_ProductoPrecios claseCapaDatos = new CD_ProductoPrecios();
         claseCapaDatos.ConsultaListaProductoPrecioAAA(ref precio, Id_Emp, Id_Cd, Id_Prd, Conexion);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void ConsultaListaProductoPrecios(ProductoPrecios productoPrecio, string Conexion, ref List <ProductoPrecios> List)
 {
     try
     {
         CD_ProductoPrecios claseCapaDatos = new CD_ProductoPrecios();
         claseCapaDatos.ConsultaListaProductoPrecios(productoPrecio, Conexion, ref List);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }