Example #1
0
 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;
 }
Example #2
0
 public PointService(Domain.Data.IPointRepo pointRepo)
 {
     _pointRepo = pointRepo;
 }