14 lines
317 B
C#
14 lines
317 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace AIParkingApplication
|
|
{
|
|
public interface IDoorControlAccess
|
|
{
|
|
event C3DeviceEvent OnNewCardReceived;
|
|
|
|
ActionResult Connect();
|
|
ActionResult Disconnect();
|
|
Task GetLogToReceiveNewCard();
|
|
ActionResult OpenDoor(int doorId);
|
|
}
|
|
} |