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

Get() public method

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