Exemple #1
0
 public CategoryRepository(SpacedRepAppDbContext context, ICacheService cacheService) : base(context, cacheService)
 {
     _context = context;
 }
 public NoteRepository(SpacedRepAppDbContext context, ITagRepository tagRepository, ICacheService cacheService) : base(context, cacheService)
 {
     _context       = context;
     _tagRepository = tagRepository;
 }