Пример #1
0
 public PublisherRepository(TheGameCaveContext context) : base(context)
 {
 }
Пример #2
0
 public RepositoryMapping(TheGameCaveContext context, IMapper mapper) : base(context)
 {
     _mapper = mapper;
 }
Пример #3
0
 public ProductRepository(TheGameCaveContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #4
0
 public RepositoryBase(TheGameCaveContext context)
 {
     _context = context;
 }
Пример #5
0
 public CategoryRepository(TheGameCaveContext context) : base(context)
 {
 }