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