ServiceDbContextTest.cs 197 B

123456789
  1. using Microsoft.EntityFrameworkCore;
  2. namespace qdr.fnd.core.test
  3. {
  4. public abstract class ServiceDbContextTest<TDbContext> : ServiceTest where TDbContext : DbContext
  5. {
  6. }
  7. }