PIbd-42_Kashin_M.I_CPO_Cour.../App.xaml.cs
maksim e768af07da Добавление папк для паттерна MVVM.
Иницилиазация и элементарый вывод работника. (Без БД)
2024-11-11 16:11:20 +04:00

22 lines
466 B
C#

using EmployeeManagementApp.Views;
using System.Configuration;
using System.Data;
using System.Windows;
namespace EmployeeManagementApp
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
MainView mainView = new MainView();
mainView.Show();
}
}
}