16 lines
349 B
C#
16 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DAL.Domain;
|
|
using DAL.Interfaces;
|
|
|
|
namespace DAL.Repositories
|
|
{
|
|
public class FoorumRepository: RepositoryBase<Foorum>, IFoorumRepository
|
|
{
|
|
public FoorumRepository(IFoorumDbContext ctx): base(ctx) { }
|
|
}
|
|
}
|