Exemplo n.º 1
0
        public ActionResult AvailableTabs()
        {
            Tab[]          tabs          = _tabService.GetAll();
            TabViewModel[] tabsViewModel = tabs.Select(t => new TabViewModel(t)).ToArray();

            return(View(tabsViewModel));
        }