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