Arash.Core.Manager.MemberManager.GetCount C# (CSharp) Method

GetCount() public method

public GetCount ( bool>.Func predicate = null ) : int
predicate bool>.Func
return int
        public int GetCount(Func<Member, bool> predicate = null)
        {
            return predicate == null
                ? _repository.GetCount(p => true)
                : _repository.GetCount(predicate);
        }