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