Exemplo n.º 1
0
 public FeedController(IRecommendationClient recommendationClient, IGitHubService gitHubService, ApplicationDbContext context, IProjectService projectService)
 {
     _recommendationClient = recommendationClient;
     _gitHubService        = gitHubService;
     _context        = context;
     _projectService = projectService;
 }
Exemplo n.º 2
0
 public ProjectsController(IProjectService projectService, IRecommendationClient recommendationClient, IGitHubService gitHubService, IMapper mapper, IUsersServices usersServices)
 {
     _projectService       = projectService;
     _recommendationClient = recommendationClient;
     _usersServices        = usersServices;
     _gitHubService        = gitHubService;
     _mapper = mapper;
 }