Exemple #1
0
 protected BaseService(IGamesroomDbContext context)
 {
     _context  = context;
     _entities = context.Set <TEntity>();
 }
Exemple #2
0
 public BoxService(IGamesroomDbContext dbContext, IMapper mapper) : base(dbContext)
 {
     _context = dbContext;
     _mapper  = mapper;
 }
Exemple #3
0
 public GameService(IGamesroomDbContext context, IMapper mapper) : base(context)
 {
     _context = context;
     _mapper  = mapper;
 }