This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/MobileApps/MyDriving/MyDriving.UWP/Helpers/OBDDeviceMock.cs

42 lines
852 B
C#
Raw Normal View History

2022-11-03 20:41:13 +00:00
using MyDriving.Interfaces;
using MyDriving.UWP.Helpers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyDriving.UWP.Assets
{
public class OBDDeviceSampleData : IOBDDevice
{
public bool IsReadingData
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public Task Disconnect()
{
throw new NotImplementedException();
}
public Task Initialize()
{
throw new NotImplementedException();
}
public Dictionary<string, string> ReadData()
{
throw new NotImplementedException();
}
}
}