private async Task TurnOffAirCondition() { var smartHouse = new SmartHouseService(); await ShowProgressScreen("Please wait..."); var result = await smartHouse.TurnOffAirConditioner(); await CompleteMessage($"Air conditioner {result?.Message}"); }
private async Task TurnOffAirCondition() { var smartHouseService = new SmartHouseService(); await smartHouseService.TurnOffAirConditioner(); }