예제 #1
0
 public ApplicationService(AppDbContext context, IMapper mapper, IWebHostEnvironment webHostEnvironment, ITextControlService textControlService)
 {
     _textControlService = textControlService;
     _mapper             = mapper;
     _context            = context;
     _hostEnvironment    = webHostEnvironment;
 }
 public CommentService(AppDbContext context, ITextControlService censorshipService)
 {
     _context           = context;
     _censorshipService = censorshipService;
 }
 public ApiTextControlController(ITextControlService textControlService)
 {
     _textControlService = textControlService;
 }