PlayerRepository.cs 374 B

1234567891011121314
  1. using DataLayer.Interfaces;
  2. using Domain;
  3. namespace DataLayer;
  4. public class PlayerRepository : AbstractRepository<Player>, IPlayerRepository
  5. {
  6. private readonly DeathwatchDbContext _deathwatchDbContext;
  7. public PlayerRepository(DeathwatchDbContext deathwatchDbContext) : base(deathwatchDbContext)
  8. {
  9. _deathwatchDbContext = deathwatchDbContext;
  10. }
  11. }