private async void SafeMethod()
        {
            var teamident = Session.CurrentUser.TeamIdent;

            model.TeamIdent = teamident;
            protocolService.Save(model);
            if (Parent is ProtocolOverviewViewModel protocol)
            {
                protocol.RefreshList();
            }
            await protocolPage.DisplayAlert("Erfolgreich", "Das Protokoll wurde erstellt.", "OK");

            await protocolPage.Navigation.PopAsync();
        }