using Domains; namespace Infrastructure.Database.Generic { public interface IGenericReader { /// Get all entities of type stored in storage /// Entity type to seek in storage IQueryable GetAll() where T : class, IEntity; } }