Esempio n. 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);
        }
Esempio n. 2
0
 public int UpdateActiveCountryNotes(ActiveCountryItem item)
 {
     return(0);
 }
Esempio n. 3
0
 public int DeleteActiveCountry(ActiveCountryItem item)
 {
     return(0);
 }
Esempio n. 4
0
 public int AddActiveCountry(ActiveCountryItem item)
 {
     return(0);
 }