[NUI] Merge NUI.Samples to TizenFX (#1222)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Samples / Tizen.NUI.Samples / Samples / ContactCard / ContactData.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace Tizen.NUI.Samples
8 {
9     public class ContactData
10     {
11         public const int itemSize = 15;
12         public static readonly string floder = CommonResource.GetFHResourcePath() + "ContactCard/";
13         public class Item
14         {
15             public string name;
16             public string address;
17             public string imagePath;
18
19             public Item(string _name, string _address, string _imagePath)
20             {
21                 name = _name;
22                 address = _address;
23                 imagePath = _imagePath;
24             }
25         }
26
27         public static Item[] itmes = new Item[itemSize]
28         {
29             new Item("Shelia Ramos",     "19 Wormley Ct\nWinters Way\nWaltham Abbey\nEN9 3HW",       floder +"gallery-small-19.jpg"),
30             new Item("Walter Jensen",    "32 Upper Fant Rd\nMaidstone\nME16 8DN",                    floder + "gallery-small-2.jpg"),
31             new Item("Randal Parks",     "8 Rymill St\nLondon\nE16 2JF",                             floder + "gallery-small-3.jpg"),
32             new Item("Tasha Cooper",     "2 Kyles View\nColintraive\nPA22 3AS",                      floder + "gallery-small-4.jpg"),
33             new Item("Domingo Lynch",    "Red Lion Farm\nWatlington\nOX49 5LG",                      floder + "gallery-small-5.jpg"),
34             new Item("Dan Haynes",       "239 Whitefield Dr\nLiverpool\nL32 0RD",                    floder + "gallery-small-6.jpg"),
35             new Item("Leslie Wong",      "1 Tullyvar Rd\nAughnacloy\nBT69 6BQ",                      floder + "gallery-small-7.jpg"),
36             new Item("Mable Hodges",     "5 Mortimer Rd\nGrazeley\nReading\nRG7 1LA",                floder + "gallery-small-8.jpg"),
37             new Item("Kristi Riley",     "10 Jura Dr\nOld Kilpatrick\nGlasgow\nG60 5EH",             floder + "gallery-small-17.jpg"),
38             new Item("Terry Clark",      "142 Raeberry St\nGlasgow\nG20 6EA",                        floder + "gallery-small-18.jpg"),
39             new Item("Horace Bailey",    "11 Assembly St\nNormanton\nWF6 2DB",                       floder + "gallery-small-11.jpg"),
40             new Item("Suzanne Delgado",  "6 Grange Rd\nDownpatrick\nBT30 7DB",                       floder + "gallery-small-12.jpg"),
41             new Item("Jamie Bennett",    "117 Potter St\nNorthwood\nHA6 1QF",                        floder + "gallery-small-13.jpg"),
42             new Item("Emmett Yates",     "18 Renfrew Way\nBletchley\nMilton Keynes\nMK3 7NY",        floder + "gallery-small-14.jpg"),
43             new Item("Glen Vaughn",      "5 Hasman Terrace\nCove Bay\nAberdeen\nAB12 3GD",           floder + "gallery-small-15.jpg")
44         };
45
46     }
47
48
49 }