10 lines
327 B
C#
10 lines
327 B
C#
using NG_2023_Kanban.DataLayer.DbStartup;
|
|
using NG_2023_Kanban.DataLayer.Entities;
|
|
using NG_2023_Kanban.DataLayer.Interfaces;
|
|
|
|
namespace NG_2023_Kanban.DataLayer.Repositories;
|
|
|
|
public class BoardRepository : BaseRepository<Board>, IBoardRepository
|
|
{
|
|
public BoardRepository(DatabaseContext context) : base(context) { }
|
|
}
|