mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 14:51:44 +01:00
33 lines
669 B
C#
33 lines
669 B
C#
using Android.App;
|
|
using Android.Content;
|
|
using Android.OS;
|
|
using Android.Runtime;
|
|
using Android.Views;
|
|
using Android.Widget;
|
|
using Borepin.Service.NFC;
|
|
using NFC.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Borepin.Droid.Services
|
|
{
|
|
public class NFCService : INFCService
|
|
{
|
|
public ICard GetCard()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IHardware GetHardware()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IReader GetReader()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |