标签:des style blog color sp div on log bs
namespace DesignPattern.Structural.Facade { public class Facade { readonly ProductA _productA = new ProductA(); readonly ProductB _productB = new ProductB(); public void Show() { _productA.ShowA(); _productB.ShowB(); } } public class ProductA { public void ShowA() { } } public class ProductB { public void ShowB() { } } }
DesignPattern_Structural_Facade
标签:des style blog color sp div on log bs
原文地址:http://www.cnblogs.com/rammderek/p/4097844.html