using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BrightGlimmer.Data.Interfaces { public interface IQueryRepository { IUnitOfWork UnitOfWork { get; } IQueryable Get(); T Get(Guid id); Task GetAsync(Guid id); } }