二)网站项目ProductDataProxy,Petshop 源码分析

Code


这个类是一个产品数据代理类,
    public static IList<ProductInfo> GetProductsByCategory(string category)
    public static IList<ProductInfo> GetProductsBySearch(string text)
    public static ProductInfo GetProduct(string productId)
这3个类其实加个缓存罢了,我想不考虑缓存的话,这个类可以省去了

原文地址:https://www.cnblogs.com/loning/p/1055376.html