housekeeping

This commit is contained in:
chris.watts90@outlook.com 2017-06-26 21:28:15 +01:00
parent 610a69a18e
commit 80894ffe0d
5 changed files with 8 additions and 11 deletions

View File

@ -1,4 +1,5 @@
using Nancy; using Interfaces;
using Nancy;
namespace RaceLapTimer.ApiControllers namespace RaceLapTimer.ApiControllers
{ {

View File

@ -1,4 +1,5 @@
using Nancy; using Interfaces;
using Nancy;
namespace RaceLapTimer.ApiControllers namespace RaceLapTimer.ApiControllers
{ {

View File

@ -1,4 +1,5 @@
using Nancy; using Interfaces;
using Nancy;
namespace RaceLapTimer.ApiControllers namespace RaceLapTimer.ApiControllers
{ {

View File

@ -7,12 +7,6 @@ namespace RaceLapTimer
{ {
class ConfigFilePathProvider : IConfigFilePathProvider class ConfigFilePathProvider : IConfigFilePathProvider
{ {
public string GetPath public string GetPath => new Uri(Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().CodeBase), "Configs")).LocalPath;
{
get
{
return new Uri(Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().CodeBase), "Configs")).LocalPath;
}
}
} }
} }

View File

@ -6,7 +6,7 @@ using RaceLapTimer.Assists;
namespace RaceLapTimer.Extensions.TransponderUtilities namespace RaceLapTimer.Extensions.TransponderUtilities
{ {
class TransponderUtilityManager:ITransponderUtilityManager class TransponderUtilityManager : ITransponderUtilityManager
{ {
private List<ITransponderUtilityProvider> _providers; private List<ITransponderUtilityProvider> _providers;
private readonly ILoggerService _logger; private readonly ILoggerService _logger;