SetCountries() public méthode

public SetCountries ( string currentCountryIso, XsollaCountries countries ) : void
currentCountryIso string
countries XsollaCountries
Résultat void
Exemple #1
0
 public void SetCountries(string pStartCountry, XsollaCountries countries)
 {
     _countries = countries;
     if (utilsLink.GetUser().IsAllowChangeCountry())
     {
         allController.SetCountries(pStartCountry != ""?pStartCountry:startCountryIso, _countries);
     }
 }
        private void InitChildView()
        {
//			Resizer.ResizeToParrent (gameObject);
            quickController.SetQuickMethods(_quickPayments);
            quickController.SetAllMethods(_paymentMethods);
            allController.SetPaymentMethods(_paymentMethods);
            if (utilsLink.GetUser().IsAllowChangeCountry())
            {
                allController.SetCountries(startCountryIso, _countries);
            }
            screenHider.SetActive(false);
        }