public RunController(UserManager <ApplicationUser> userManager, IActivityRepo activityRepo, IEventHubService eventHubService, IPointRepo pointRepo, IRunnerRepo runnerRepo, ICloudStorageService cloudStorageService, ISharedRunService sharedRunService) { _userManager = userManager; _activityRepo = activityRepo; _eventHubService = eventHubService; _pointRepo = pointRepo; _runnerRepo = runnerRepo; _cloudStorageService = cloudStorageService; _sharedRunService = sharedRunService; }
public PointService(Domain.Data.IPointRepo pointRepo) { _pointRepo = pointRepo; }