using Borepin.Service.NFC; using NFC.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Borepin.UWP.Services { public class NFCService : INFCService { public ICard GetCard() { throw new NotImplementedException(); } public IHardware GetHardware() { throw new NotImplementedException(); } public IReader GetReader() { throw new NotImplementedException(); } } }