This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows.Input; | |
namespace MyNameSpace | |
{ | |
/// <summary> | |
/// DelegateCommand borrowed from | |
/// http://www.wpftutorial.net/DelegateCommand.html | |
/// </summary> | |
public class DelegateCommand : ICommand |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Bootstrapper : BootstrapperBase | |
{ | |
private IUnityContainer _unityContainer; | |
#region Constructor | |
public Bootstrapper() | |
{ | |
Initialize(); | |
} | |
#endregion |