using System; public interface IDataService : IService { event Action OnBFIValueUpdated; // event Action OnBloodFlowValueUpdated; // event Action OnBatteryLevelUpdated; float CurrentBFI { get; } float CurrentBloodFlow { get; } float CurrentBatteryLevel { get; } bool IsCollecting { get; } void StartDataCollection(); void StopDataCollection(); }