You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
647 B
27 lines
647 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using Business;
|
|
using Persistance;
|
|
|
|
namespace WpfApp1
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
public Manager LeManager { get; private set; } = new Manager(new StubLib.Stub());
|
|
public ManagerUsers LeManagerUser { get; private set; } = new ManagerUsers(new StubLib.Stub());
|
|
|
|
public void Temp()
|
|
{
|
|
var mw = MainWindow as MainWindow;
|
|
}
|
|
}
|
|
}
|