示例#1
0
 public NoteService(CheckNoteContext dbContext, IAuthService authService, IMapper mapper, IMemoryCache cache, QuestionService questionService)
 {
     this.dbContext       = dbContext;
     this.authService     = authService;
     this.mapper          = mapper;
     this.cache           = cache;
     this.questionService = questionService;
 }
示例#2
0
 public QuestionService(CheckNoteContext dbContext, IAuthService authService, IMapper mapper)
 {
     this.dbContext   = dbContext;
     this.authService = authService;
     this.mapper      = mapper;
 }
示例#3
0
 public TagService(CheckNoteContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }