using System.Windows; namespace MVPtoMVVM.mvvm { /// /// Interaction logic for App.xaml /// public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { new Bootstrap().Execute(); } } }