Example #1
0
 public PublisherRepository(TheGameCaveContext context) : base(context)
 {
 }
 public RepositoryMapping(TheGameCaveContext context, IMapper mapper) : base(context)
 {
     _mapper = mapper;
 }
 public ProductRepository(TheGameCaveContext context, IMapper mapper) : base(context, mapper)
 {
 }
Example #4
0
 public RepositoryBase(TheGameCaveContext context)
 {
     _context = context;
 }
Example #5
0
 public CategoryRepository(TheGameCaveContext context) : base(context)
 {
 }