using System.Collections.Generic; using System.Windows; using BS.Shared.Core; using BS.Shared.DataContracts; namespace BeWo.View.Navigation { public partial class CustomerTeamNavigationView { private IEnumerable objectList = null; private IEnumerable recentList = null; public CustomerTeamNavigationView() { InitializeComponent(); } private void OnLoaded(object sender, RoutedEventArgs e) { ReloadData(false); } private void ReloadData(bool refresh) { if (refresh || recentList == null) { } } private void mainNavigationView_CreateNewObject() { } private bool mainNavigationView_DeleteObject(IFilterableDC obj) { return false; } private void mainNavigationView_ExcelExport(object sender, EventArgs> e) { } private void mainNavigationView_OpenObject(IFilterableDC obj) { } public override void ChildViewClosed() { recentList = null; objectList = null; } private void MainNavigationView_OnReloadData() { ReloadData(true); } } }