using Quadarax.Foundation.Core.Business; using Quadarax.Foundation.Core.Data.Domain; using Quadarax.Foundation.Core.Data.Interface.Repository; namespace qdr.fnd.core.test { public abstract class ServiceDbContextTest : RepositoryDbContextTest where TDbContext : DataDomain, new() where TService : AbstractRepositoryService where TRepository : IRepository { protected abstract TService GetService(); } }