DotNetClub.Core.Service.CategoryService.Get C# (CSharp) Method

Get() public method

public Get ( string key ) : CategoryModel
key string
return DotNetClub.Core.Model.Category.CategoryModel
        public CategoryModel Get(string key)
        {
            return this.All().SingleOrDefault(t => t.Key == key);
        }