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