public AbstractScreenPresenter(TView view, INavigationService navigationService)
            : base(view)
        {
            navigationService.AssertNotNull(nameof(navigationService));

            NavigationService = navigationService;
        }