15 lines
425 B
C#
15 lines
425 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 CharacterRepository : Repository<Character>, IRepository<Character>
|
|||
|
{
|
|||
|
public CharacterRepository(ApplicationDbContext _dbContext) : base(_dbContext)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|