public void ConsultaProducto(ref Producto producto, string Conexion, int id_Emp, int id_Cd, int id_Cd_Ver, int id_Prd)
 {
     try
     {
         CD_CatProducto claseCapaDatos = new CD_CatProducto();
         claseCapaDatos.ConsultaProducto(ref producto, Conexion, id_Emp, id_Cd, id_Cd_Ver, id_Prd);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }