Example #1
0
        public void LoadData()
        {
            var data = _interactor.LoadData();

            if (!string.IsNullOrEmpty(data.PhoneCountry))
            {
                _viewPhone.SetPhoneCountry(data.PhoneCountry);
            }
            if (!string.IsNullOrEmpty(data.PhoneNumber))
            {
                _viewPhone.SetPhoneNumber(data.PhoneNumber);
            }
        }