public ProjectCreatedIntegrationEventHandler(RecommendContext recommendContext,
                                              IUserService userService, IContactService contactService)
 {
     _recommendContext = recommendContext;
     _userService      = userService;
     _contactService   = contactService;
 }
コード例 #2
0
 public ProjectCreatedIntegrationEventHandler(RecommendContext context,
                                              IUserService userService,
                                              IContactService contactService,
                                              ILogger <ProjectCreatedIntegrationEventHandler> logger,
                                              IHttpClient httpClient)
 {
     _context        = context;
     _userService    = userService;
     _contactService = contactService;
     _logger         = logger;
     _httpClient     = httpClient;
 }
コード例 #3
0
 public RecommendController(RecommendContext context)
 {
     _context = context;
 }
コード例 #4
0
 public RecommendController(RecommendContext context,
                            IUserService userService)
 {
     _context     = context;
     _userService = userService;
 }
コード例 #5
0
 public ProjectCreatedHander(RecommendContext recommendContext)
 {
     _recommendContext = recommendContext;
 }
コード例 #6
0
 //private IUserService _userService;
 //private IContactService _contactService;
 public ProjectCreateIntergrationEventHandler(RecommendContext context /*, IUserService userService,*/ /*IContactService contactService*/)
 {
     _context = context;
     //_userService = userService;
     //_contactService = contactService;
 }
コード例 #7
0
 public RecommendController(RecommendContext recommendContext)
 {
     _recommendContext = recommendContext;
 }
コード例 #8
0
 public RecommendRepository(RecommendContext recommendContext)
 {
     this.recommendContext = recommendContext;
 }