Пример #1
0
 public RecentEntry(int id, string name, string description, IRecentEntryList list)
 {
     Id = id;
     Name = name;
     Description = description;
     _list = list;
 }
Пример #2
0
 public RecentEntry(int id, string name, IRecentEntryList list)
     : this(id, name, string.Empty, list)
 {
 }