using System; using SalesCatalog.Model; namespace SalesCatalog { /// /// Catalog manager. /// Use this class to retreive the catalog or its elements /// public static class CatalogManager { public static Catalog GetCatalog () { CatalogProvider p = CatalogHelper.GetProvider (); return p.GetCatalog (); } } }