初始化CRICS
This commit is contained in:
20
Service/Implement/UnlockControlManager.cs
Normal file
20
Service/Implement/UnlockControlManager.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Domain;
|
||||
using RCUHost;
|
||||
using RCUHost.Protocols;
|
||||
|
||||
namespace Service.Implement
|
||||
{
|
||||
public class UnlockControlManager : IUnlockControlManager
|
||||
{
|
||||
public IUnlockControlReceiver UnlockControlReceiver { get; set; }
|
||||
|
||||
public void Send(Host host)
|
||||
{
|
||||
UnlockControlReceiver.Send(host);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user