Arash.Core.Manager.TagEntityManager.Get C# (CSharp) Method

Get() public method

public Get ( bool>.Func predicate = null ) : TagEntity
predicate bool>.Func
return Arash.Core.Model.TagEntity
        public TagEntity Get(Func<TagEntity, bool> predicate = null)
        {
            return predicate == null
                ? _repository.Get(p => true)
                : _repository.Get(predicate);
        }