21 lines
421 B
C#
21 lines
421 B
C#
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|