Files
Proftaak-RH-B4/ProftaakRH/DataConverter.cs
2020-09-09 11:35:54 +02:00

26 lines
470 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Hardware
{
class DataConverter : IDataConverter
{
public void Bike(byte[] bytes)
{
throw new NotImplementedException();
}
public void BPM(byte[] bytes)
{
throw new NotImplementedException();
}
}
interface IDataConverter
{
void BPM(byte[] bytes);
void Bike(byte[] bytes);
}
}