public AuthenticationForm(IContract contract)
 {
     InitializeComponent();
     SetStrings();
     p = new AuthenticationPresenter(this, contract);
 }
 public void Initialize()
 {
     mockAuthenticationView = Substitute.For<IAuthenticationView>();
     mockContract = Substitute.For<IContract>();
     presentor = new AuthenticationPresenter(mockAuthenticationView, (IContract)mockContract);
 }