예제 #1
0
 public FeedbackIntegrationService(IFeedbackClient client, IConfigurationRoot config, IMapper mapper,
                                   LoadshopDataContext context, IUserContext userContext, ISecurityService securityService)
 {
     _client          = client;
     _config          = config;
     _mapper          = mapper;
     _context         = context;
     _userContext     = userContext;
     _securityService = securityService;
 }
예제 #2
0
 public FeedbackController(IFeedbackClient feedbackClient)
 {
     _feedbackClient = feedbackClient;
 }