public SysCmsInfoCommentController(UnitOfWork unitOfWork, ILogger <SysCmsInfoCommentController> logger, IMapper mapper, ISysCmsInfoCommentService SysCmsInfoCommentService, ISysCmsColumnService SysCmsColumnService, ISysCmsInfoService SysCmsInfoService)
 {
     _unitOfWork = unitOfWork;
     _logger     = logger;
     _mapper     = mapper;
     _SysCmsInfoCommentService = SysCmsInfoCommentService;
     _SysCmsColumnService      = SysCmsColumnService;
     _SysCmsInfoService        = SysCmsInfoService;
 }
Exemple #2
0
 public CommentController(IHttpContextAccessor accessor, UnitOfWork unitOfWork, ISysCmsInfoCommentService sysCmsInfoCommentService)
 {
     _accessor   = accessor;
     _unitOfWork = unitOfWork;
     _sysCmsInfoCommentService = sysCmsInfoCommentService;
 }