From 97d010f2aab5678c3622c951d1ce9f5c9443d007 Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Fri, 23 Jun 2017 21:14:19 +0100 Subject: [PATCH 1/2] index on master: 14e82f6 revert async method, its stopping the code from working, more reading/research needed! From f7b41cee9974866363ce33002e883cca24d06310 Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Fri, 23 Jun 2017 21:14:20 +0100 Subject: [PATCH 2/2] untracked files on master: 14e82f6 revert async method, its stopping the code from working, more reading/research needed! --- RaceLapTimer/Interfaces/ISystemControl.cs | 7 +++++++ RaceLapTimer/Interfaces/ISystemControlProviderFactory.cs | 7 +++++++ RaceLapTimer/Interfaces/ITransponderUtilities.cs | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 RaceLapTimer/Interfaces/ISystemControl.cs create mode 100644 RaceLapTimer/Interfaces/ISystemControlProviderFactory.cs create mode 100644 RaceLapTimer/Interfaces/ITransponderUtilities.cs diff --git a/RaceLapTimer/Interfaces/ISystemControl.cs b/RaceLapTimer/Interfaces/ISystemControl.cs new file mode 100644 index 0000000..6ec0b46 --- /dev/null +++ b/RaceLapTimer/Interfaces/ISystemControl.cs @@ -0,0 +1,7 @@ +namespace Interfaces +{ + public interface ISystemControl + { + void Shutdown(); + } +} \ No newline at end of file diff --git a/RaceLapTimer/Interfaces/ISystemControlProviderFactory.cs b/RaceLapTimer/Interfaces/ISystemControlProviderFactory.cs new file mode 100644 index 0000000..7cb7d58 --- /dev/null +++ b/RaceLapTimer/Interfaces/ISystemControlProviderFactory.cs @@ -0,0 +1,7 @@ +namespace Interfaces +{ + interface ISystemControlProviderFactory + { + ISystemControl CreateProvider(); + } +} diff --git a/RaceLapTimer/Interfaces/ITransponderUtilities.cs b/RaceLapTimer/Interfaces/ITransponderUtilities.cs new file mode 100644 index 0000000..16c7d39 --- /dev/null +++ b/RaceLapTimer/Interfaces/ITransponderUtilities.cs @@ -0,0 +1,7 @@ +namespace Interfaces +{ + public interface ITransponderUtilities + { + int GetLastScannedIdAsync(); + } +}