26 lines
470 B
C#
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);
|
|
}
|
|
}
|