source: src/FinkiChattery/FinkiChattery.Persistence/Repositories/Implementations/QuestionRepo.cs@ 7146ebb

dev
Last change on this file since 7146ebb was 7146ebb, checked in by Стојков Марко <mst@…>, 3 years ago

Ask question endpoint

  • Property mode set to 100644
File size: 316 bytes
Line 
1using FinkiChattery.Persistence.Context;
2using FinkiChattery.Persistence.Models;
3
4namespace FinkiChattery.Persistence.Repositories
5{
6 public class QuestionRepo : Repository<Question>, IQuestionRepo
7 {
8 public QuestionRepo(ApplicationDbContext dbContext) : base(dbContext)
9 {
10 }
11 }
12}
Note: See TracBrowser for help on using the repository browser.