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

Get() public method

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