ServiceDbContextTest.cs 519 B

12345678910111213
  1. using Quadarax.Foundation.Core.Business;
  2. using Quadarax.Foundation.Core.Data.Domain;
  3. using Quadarax.Foundation.Core.Data.Interface.Repository;
  4. namespace qdr.fnd.core.test
  5. {
  6. public abstract class ServiceDbContextTest<TService,TRepository, TDbContext> : RepositoryDbContextTest<TRepository, TDbContext> where TDbContext : DataDomain, new()
  7. where TService : AbstractRepositoryService<TRepository>
  8. where TRepository : IRepository
  9. {
  10. protected abstract TService GetService();
  11. }
  12. }