| 1234567891011121314 |
- using DataLayer.Interfaces;
- using Domain;
- namespace DataLayer;
- public class PlayerRepository : AbstractRepository<Player>, IPlayerRepository
- {
- private readonly DeathwatchDbContext _deathwatchDbContext;
- public PlayerRepository(DeathwatchDbContext deathwatchDbContext) : base(deathwatchDbContext)
- {
- _deathwatchDbContext = deathwatchDbContext;
- }
- }
|