using System; using System.Collections; using NPetshop.Domain.Catalog; namespace NPetshop.Persistence.Interfaces.Catalog { /// /// Summary description for ICategoryDao. /// public interface ICategoryDao { IList GetCategoryList(); Category GetCategory(string categoryId); } }