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