yavsc/SalesCatalog/CatalogManager.cs

19 lines
350 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using SalesCatalog.Model;
namespace SalesCatalog
{
/// <summary>
/// Catalog manager.
/// Use this class to retreive the catalog or its elements
/// </summary>
public static class CatalogManager
{
public static Catalog GetCatalog ()
{
CatalogProvider p = CatalogHelper.GetProvider ();
return p.GetCatalog ();
}
}
}