untracked files on master: 14e82f6 revert async method, its stopping the code from working, more reading/research needed!
This commit is contained in:
commit
f7b41cee99
7
RaceLapTimer/Interfaces/ISystemControl.cs
Normal file
7
RaceLapTimer/Interfaces/ISystemControl.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Interfaces
|
||||
{
|
||||
public interface ISystemControl
|
||||
{
|
||||
void Shutdown();
|
||||
}
|
||||
}
|
||||
7
RaceLapTimer/Interfaces/ISystemControlProviderFactory.cs
Normal file
7
RaceLapTimer/Interfaces/ISystemControlProviderFactory.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Interfaces
|
||||
{
|
||||
interface ISystemControlProviderFactory
|
||||
{
|
||||
ISystemControl CreateProvider();
|
||||
}
|
||||
}
|
||||
7
RaceLapTimer/Interfaces/ITransponderUtilities.cs
Normal file
7
RaceLapTimer/Interfaces/ITransponderUtilities.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Interfaces
|
||||
{
|
||||
public interface ITransponderUtilities
|
||||
{
|
||||
int GetLastScannedIdAsync();
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user