public UserGamesService(IGames games, IUserGames userGames, IUserProfiles userProfiles, IUnitOfWork unitOfWork, MappingService mappingService) { this.games = games; this.userGames = userGames; this.userProfiles = userProfiles; this.unitOfWork = unitOfWork; this.mappingService = mappingService; }
public ProfilesService(IUserProfiles userProfiles, IUnitOfWork unitOfWork, IExchanges exchanges, IUserSearches userSearches, IUserGames userGames, IGames games, MappingService mappingService) { this.userProfiles = userProfiles; this.unitOfWork = unitOfWork; this.exchanges = exchanges; this.userSearches = userSearches; this.userGames = userGames; this.games = games; this.mappingService = mappingService; }