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