Beispiel #1
0
        public Task PushNewNavigationServiceModal(FreshTabbedNavigationContainer tabbedNavigationContainer, FreshBasePageModel basePageModel = null)
        {
            var models = tabbedNavigationContainer.TabbedPages.Select(o => o.GetModel()).ToList();

            if (basePageModel != null)
            {
                models.Add(basePageModel);
            }
            return(PushNewNavigationServiceModal(tabbedNavigationContainer, models.ToArray()));
        }
Beispiel #2
0
        public Task PushNewNavigationServiceModal(FreshTabbedNavigationContainer tabbedNavigationContainer)
        {
            var models = tabbedNavigationContainer.TabbedPages.Select(o => o.GetModel());

            return(PushNewNavigationServiceModal(tabbedNavigationContainer, models.ToArray()));
        }