You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace YOUserbase {
|
|
public static class Data {
|
|
public static ObservableCollection<Group> Groups = new ObservableCollection<Group> {
|
|
new Group {
|
|
Name = "Computer Scientists",
|
|
Details = "Those weird guys",
|
|
},
|
|
new Group {
|
|
Name = "Mediamaticians",
|
|
Details = "It wasn't enough for the good jobs",
|
|
},
|
|
};
|
|
|
|
|
|
public static ObservableCollection<User> Users = new ObservableCollection<User> {
|
|
new User {
|
|
Firstname = "Kimi",
|
|
Lastname = "Loeffel",
|
|
BirthDate = new DateTime(2006, 04, 07),
|
|
Details = "He does not enjoy .NET MAUI",
|
|
WorkingGroup = Groups.First(),
|
|
},
|
|
new User {
|
|
Firstname = "Levin",
|
|
Lastname = "Zehnder",
|
|
BirthDate = new DateTime(2005, 11, 12),
|
|
Details = "He also does not like this shit",
|
|
WorkingGroup = Groups.First(),
|
|
},
|
|
new User {
|
|
Firstname = "Marco",
|
|
Lastname = "Herren",
|
|
BirthDate = new DateTime (2005, 11, 02),
|
|
Details = "So does he",
|
|
WorkingGroup = Groups.Last (),
|
|
},
|
|
};
|
|
|
|
}
|
|
} |