Example #1
0
 public TestBot(
     IOptions <BotConfiguration> config,
     IExternalMessagingClient externalMessagingClient,
     IPathingService pathingService,
     IMapApiService mapApiService,
     IMuleService muleService)
 {
     _config = config.Value;
     _externalMessagingClient = externalMessagingClient;
     _pathingService          = pathingService;
     _mapApiService           = mapApiService;
     _muleService             = muleService;
 }
 public PathingService(IMapApiService mapApiService, IMemoryCache cache)
 {
     _mapApiService = mapApiService;
     _cache         = cache;
 }