15 lines
405 B
C#
15 lines
405 B
C#
|
using SessionCompanion.Database.Repositories.Base;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SessionCompanion.Database.Repositories
|
|||
|
{
|
|||
|
public class RaceRepository : Repository<Race>, IRepository<Race>
|
|||
|
{
|
|||
|
public RaceRepository(ApplicationDbContext _dbContext) : base(_dbContext)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|