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

Get() public method

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