added system controller factory method

This commit is contained in:
chris.watts90@outlook.com 2017-06-24 10:26:51 +01:00
parent 08b4879526
commit 087242dd58

View File

@ -0,0 +1,12 @@
using Interfaces;
namespace IrDaemonNotifier
{
public class IrDaemonControllerProviderFactory : ISystemControlProviderFactory
{
public ISystemControl GetProvider()
{
return new IrDaemonController();
}
}
}