public void GetStateAndCountryByCity()
        {
            try
            {
                using (_locationModel = new LocationModel())
                {
                    CS_State state = _locationModel.GetStateByCityId(_view.CityId);

                    if (null != state)
                    {
                        _view.StateAndCountryDataObject = new Globals.StateAndCountryDataObject();
                        _view.StateAndCountryDataObject.StateId = state.ID;
                        _view.StateAndCountryDataObject.StateName = state.AcronymName;
                        _view.StateAndCountryDataObject.CountryId = state.CountryID;
                    }
                }
            }
            catch (Exception ex)
            {
                Logger.Write(string.Format("An Error has ocurred while trying to get ZipCode by City.\n{0}\n{1}", ex.Message, ex.StackTrace));
            }
        }