public void GetModelNoParams()
        {
            var modelExp = new EditContactEntity("email", "skype", "country", "city", "phone");

            _repository.EditContactUserInfo = new DataModelUserInfo("", "", "", "", "", "email", "phone", "", "skype", "country", "city",
                                                                    "", false, new string[] {});

            var modelAct = _modelCreator.GetModel();

            Assert.AreEqual(modelExp, modelAct);
        }
 public void SetConfig()
 {
     Presenter.SetData(_modelCreator.GetModel());
 }