public StripMapRepository(APIContext dataContext, IMapper mapper)
 {
     Context = dataContext;
     DbSet   = Context.Set <StripEntity>();
     Mapper  = mapper;
 }
Beispiel #2
0
 public ChapterMapRepository(APIContext dataContext, IMapper mapper)
 {
     Context = dataContext;
     DbSet   = Context.Set <ChapterEntity>();
     Mapper  = mapper;
 }
Beispiel #3
0
 public RantMapRepository(APIContext dataContext, IMapper mapper)
 {
     Context = dataContext;
     DbSet   = Context.Set <RantEntity>();
     Mapper  = mapper;
 }