| 12345678910111213 |
- 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<TService,TRepository, TDbContext> : RepositoryDbContextTest<TRepository, TDbContext> where TDbContext : DataDomain, new()
- where TService : AbstractRepositoryService<TRepository>
- where TRepository : IRepository
- {
- protected abstract TService GetService();
- }
- }
|