using AlarmInfoServerSim.Services;
using AlarmInfoServerSim.Views;
using System.Windows;
namespace AlarmInfoServerSim
{
///
/// Interaction logic for App.xaml
///
public partial class App : PrismApplication
{
protected override Window CreateShell() => Container.Resolve();
protected override void RegisterTypes(IContainerRegistry containerRegistry)
{
//Services
containerRegistry.RegisterSingleton();
containerRegistry.RegisterSingleton();
containerRegistry.RegisterSingleton();
}
}
}