Blog.Services.Implementation.TagsService.GetByName C# (CSharp) Method

GetByName() public method

public GetByName ( string tagName ) : List
tagName string
return List
        public List<Tag> GetByName(string tagName)
        {
            return _tagsLogic.GetTagsByName(tagName);
        }