public AreaRepository(LetMeKnowContext context)
     : base(context)
 {
 }
 public RoleRepository(LetMeKnowContext context)
     : base(context)
 {
 }
Example #3
0
 public UserRepository(LetMeKnowContext context)
     : base(context)
 {
 }
Example #4
0
 public SuggestionRepository(LetMeKnowContext context)
     : base(context)
 {
 }
 public EntityBaseRepository(LetMeKnowContext context)
 {
     _context = context;
 }