public EntityFrameworkCoreKeyedRepository(EntityFrameworkCoreRepositoryService <TDbContext> entityFrameworkCoreRepositoryService) : base(entityFrameworkCoreRepositoryService)
 {
 }
Esempio n. 2
0
 protected EntityFrameworkCoreReadOnlyRepository(
     EntityFrameworkCoreRepositoryService <TDbContext> entityFrameworkCoreRepositoryService)
 {
     EntityFrameworkCoreRepositoryService = entityFrameworkCoreRepositoryService;
     DbSet = EntityFrameworkCoreRepositoryService.DbSet <TEntity>();
 }