public override async Task InitAsync() { await ExecuteAsync(async() => { await InitialDataProviderService.AddInitialData(); await LoadPatients(); }); }
async Task OnAddNewPatient() { await ExecuteAsync(async() => { Patient.PatientId = InitialDataProviderService.GetPatientId(10); Patient.DoctorId = DoctorSelected.Id; await PatientsService.AddAsync(Patient); await Navigation.PopAsync(); }); }