public ProjectCreatedIntegrationEventHandler(RecommendContext recommendContext, IUserService userService, IContactService contactService) { _recommendContext = recommendContext; _userService = userService; _contactService = contactService; }
public ProjectCreatedIntegrationEventHandler(RecommendContext context, IUserService userService, IContactService contactService, ILogger <ProjectCreatedIntegrationEventHandler> logger, IHttpClient httpClient) { _context = context; _userService = userService; _contactService = contactService; _logger = logger; _httpClient = httpClient; }
public RecommendController(RecommendContext context) { _context = context; }
public RecommendController(RecommendContext context, IUserService userService) { _context = context; _userService = userService; }
public ProjectCreatedHander(RecommendContext recommendContext) { _recommendContext = recommendContext; }
//private IUserService _userService; //private IContactService _contactService; public ProjectCreateIntergrationEventHandler(RecommendContext context /*, IUserService userService,*/ /*IContactService contactService*/) { _context = context; //_userService = userService; //_contactService = contactService; }
public RecommendController(RecommendContext recommendContext) { _recommendContext = recommendContext; }
public RecommendRepository(RecommendContext recommendContext) { this.recommendContext = recommendContext; }