untracked files on master: 14e82f6 revert async method, its stopping the code from working, more reading/research needed!

This commit is contained in:
chris.watts90@outlook.com 2017-06-23 21:14:20 +01:00
commit f7b41cee99
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,7 @@
namespace Interfaces
{
public interface ISystemControl
{
void Shutdown();
}
}

View File

@ -0,0 +1,7 @@
namespace Interfaces
{
interface ISystemControlProviderFactory
{
ISystemControl CreateProvider();
}
}

View File

@ -0,0 +1,7 @@
namespace Interfaces
{
public interface ITransponderUtilities
{
int GetLastScannedIdAsync();
}
}