18 lines
354 B
C#
18 lines
354 B
C#
using Entities.Contracts;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using SharedDATA.Api;
|
|
using TechHelper.Context;
|
|
|
|
namespace TechHelper.Repository
|
|
{
|
|
public class QuestionContextRepository : Repository<QuestionContext>, IRepository<QuestionContext>
|
|
{
|
|
public QuestionContextRepository(ApplicationContext dbContext) : base(dbContext)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|