-
Notifications
You must be signed in to change notification settings - Fork 0
/
SampleData.cs
36 lines (36 loc) · 1.18 KB
/
SampleData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
namespace PlaceRichEditInEditForm.Data
{
public partial class SampleData
{
public static List<Employee> Employees = new List<Employee> {
new Employee {
ID = 1,
Name = "Nancy Davolio",
Address = "507 - 20th Ave. E.Apt. 2A",
Phone = "(206) 555-9857",
Notes = "Data\\Notes\\NancyDavolio.docx",
},
new Employee {
ID = 2,
Name = "Andrew Fuller",
Address = "908 W. Capital Way",
Phone = "(206) 555-9482",
Notes = "Data\\Notes\\AndrewFuller.docx",
},
new Employee {
ID = 3,
Name = "Janet Leverling",
Address = "722 Moss Bay Blvd.",
Phone = "(206) 555-3412",
Notes = "Data\\Notes\\JanetLeverling.docx",
},
new Employee {
ID = 4,
Name = "Margaret Peacock",
Address = "4110 Old Redmond Rd.",
Phone = "(206) 555-8122",
Notes = "Data\\Notes\\MargaretPeacock.docx",
}
};
}
}