using CAPI.Custom.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CAPI.Custom.Data.Repositories { public class EntityReadOnlyRepository : ReadOnlyRepository where TEntity : class, IEntity { public EntityReadOnlyRepository() { } public EntityReadOnlyRepository(QuotesContext dbContext) { this.db = dbContext ?? QuotesContext.Create(); } } }