Created
January 12, 2016 09:48
-
-
Save carlwoodhouse/d2f5ca262d407e8b028e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public interface ICategoryService : IDependency { | |
| IEnumerable<IContentItemSummary> GetItemsForCategory(int categoryId); | |
| IEnumerable<string> GetCategoryTypes(); | |
| Dictionary<int, string> GetCategoriesByTypeName(string typeName); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment