using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Abp.Linq { /// /// This interface is intended to be used by ABP. /// public interface IAsyncQueryableExecuter { Task CountAsync(IQueryable queryable); Task> ToListAsync(IQueryable queryable); Task FirstOrDefaultAsync(IQueryable queryable); } }