public LearningCardRepository(LearningCardContext dbContext)
 {
     _context       = dbContext;
     _learningCards = dbContext.LearningCards;
 }
 public UserRepository(LearningCardContext dbContext)
 {
     _context = dbContext;
     _users   = dbContext.Users;
 }
 public FolderRepository(LearningCardContext dbContext)
 {
     _context = dbContext;
     _folders = dbContext.Folders;
 }