mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 23:31:48 +01:00
29 lines
572 B
C#
29 lines
572 B
C#
|
using Borepin.Service.NFC;
|
|||
|
using Foundation;
|
|||
|
using NFC.Interfaces;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using UIKit;
|
|||
|
|
|||
|
namespace Borepin.iOS.Services
|
|||
|
{
|
|||
|
public class NFCService : INFCService
|
|||
|
{
|
|||
|
public ICard GetCard()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public IHardware GetHardware()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public IReader GetReader()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|