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