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, IPostRepository { public PostRepository(IFoorumDbContext ctx) : base(ctx) { } } }