60 lines
1.3 KiB
C#
60 lines
1.3 KiB
C#
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<IFilterableDC> objectList = null;
|
|
private IEnumerable<IFilterableDC> 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<IEnumerable<IFilterableDC>> e)
|
|
{
|
|
}
|
|
|
|
private void mainNavigationView_OpenObject(IFilterableDC obj)
|
|
{
|
|
}
|
|
|
|
public override void ChildViewClosed()
|
|
{
|
|
recentList = null;
|
|
objectList = null;
|
|
}
|
|
|
|
private void MainNavigationView_OnReloadData()
|
|
{
|
|
ReloadData(true);
|
|
}
|
|
}
|
|
}
|