commit f7b41cee9974866363ce33002e883cca24d06310 Author: chris.watts90@outlook.com Date: Fri Jun 23 21:14:20 2017 +0100 untracked files on master: 14e82f6 revert async method, its stopping the code from working, more reading/research needed! 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(); + } +}