public HomeController(IDirectionsService directionsService, IGPXService gpx, IThreadCache cache)
     : base(cache)
 {
     this.directionsService = directionsService;
     this.gpx = gpx;
 }
 public GPXController(IThreadCache threadCache)
     : base(threadCache)
 {
 }
Example #3
0
 public LogService(IRepository repository, IThreadCache cache)
 {
     this.repository = repository;
     this.cache = cache;
 }
 public BaseController(IThreadCache cache)
 {
     this.cache = cache;
 }