22 lines
466 B
C#
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();
|
|
}
|
|
}
|
|
|
|
}
|