| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Communicator
- {
- public class MockCommunicatorProvider : ICommunicatorProvider
- {
- public void NotifyAllDataReceived(Dictionary<string, object> dataItems)
- {
- //TODO:
- }
- public void NotifyDataChanged(string dataKey, object rawData)
- {
- //TODO:
- }
- }
- }
|