コード例 #1
0
        // Active country handling
        public void ActiveCountryList(Action <ActiveCountryItem[]> callback)
        {
            ActiveCountryItem[] countryArray = new ActiveCountryItem[] {
                new ActiveCountryItem(1, "AU", "Notes for Australia"),
                new ActiveCountryItem(2, "BR", "Notes for Brazil"),
                new ActiveCountryItem(3, "CA", "Notes for Canada"),
                new ActiveCountryItem(4, "DE", "Notes for Germany"),
                new ActiveCountryItem(5, "MX", "Notes for Mexico"),
                new ActiveCountryItem(6, "NO", "Notes for Norway"),
                new ActiveCountryItem(7, "NZ", "Notes for New Zealand")
            };

            callback(countryArray);
        }
コード例 #2
0
 public int UpdateActiveCountryNotes(ActiveCountryItem item)
 {
     return(0);
 }
コード例 #3
0
 public int DeleteActiveCountry(ActiveCountryItem item)
 {
     return(0);
 }
コード例 #4
0
 public int AddActiveCountry(ActiveCountryItem item)
 {
     return(0);
 }