16 lines
342 B
C#
16 lines
342 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 PostRepository: RepositoryBase<Post>, IPostRepository
|
|||
|
{
|
|||
|
public PostRepository(IFoorumDbContext ctx) : base(ctx) { }
|
|||
|
}
|
|||
|
}
|