Beispiel #1
0
        private async Task AddOrUpdateDependents()
        {
            // Save Dependent record and retrieve Id.
            ThisDependent.Id = await ServiceCalls.SaveDependent(ThisDependent);

            if (this.Parent.GetType() == typeof(DependentsForm))
            {
                ((DependentsForm)this.Parent).RefreshGrid = true;
            }
        }