public GroupCardController(IErrorService errorService,
                            IGroupCardService groupCardService,
                            ICardService cardService,
                            ICommonCardService commonCardService) : base(errorService)
 {
     _groupCardService  = groupCardService;
     _cardService       = cardService;
     _commonCardService = commonCardService;
 }
示例#2
0
 public BotController(IErrorService errorService,
                      IBotService botService,
                      ICardService cardService,
                      ISettingService settingService,
                      ICommonCardService commonCardService,
                      IQnAService qnaService) : base(errorService)
 {
     _botService        = botService;
     _settingService    = settingService;
     _cardService       = cardService;
     _commonCardService = commonCardService;
     _qnaService        = qnaService;
 }