public void ConsultaListaProductoAgrupador(Producto prd, int Id_Acs, string Conexion, ref List <Comun> list)
 {
     try
     {
         CD_CatProducto claseCapaDatos = new CD_CatProducto();
         claseCapaDatos.ConsultaListaProducto(prd, Id_Acs, Conexion, ref list);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void ConsultaListaProducto(ref Producto producto, string Conexion, int id_Emp, int id_Cd, string filtro, ref List <Producto> list, object Activo)
 {
     try
     {
         CD_CatProducto claseCapaDatos = new CD_CatProducto();
         claseCapaDatos.ConsultaListaProducto(ref producto, Conexion, id_Emp, id_Cd, filtro, ref list, Activo);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void ConsultaProductoCte_Lista(Producto prd, string Conexion, int Id_Cte, int Id_Acs, ref List <Producto> list)
 {
     try
     {
         CD_CatProducto claseCapaDatos = new CD_CatProducto();
         claseCapaDatos.ConsultaListaProducto(prd, Conexion, Id_Cte, Id_Acs, ref list);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }