Пример #1
0
 public Series() : base(typeof(Series), nameof(Name), null)
 {
     AllowBlankSimpleKey = true;
     Events = new SortedEntityCollection <Event>();
 }
Пример #2
0
 public Event() : base(typeof(Event), nameof(Date),
                       typeof(Location))
 {
     _date = DefaultDate;
     Sets  = new SortedEntityCollection <Set>();
 }
Пример #3
0
 public Piece() : base(typeof(Piece), nameof(PieceNo), typeof(Set))
 {
     Credits = new SortedEntityCollection <Credit>();
 }
Пример #4
0
 public Newsletter() : base(typeof(Newsletter), nameof(Date), null)
 {
     _date  = DefaultDate;
     Events = new SortedEntityCollection <Event>();
 }
Пример #5
0
 public Genre() : base(typeof(Genre), nameof(Name), null)
 {
     Sets = new SortedEntityCollection <Set>();
 }
Пример #6
0
 public Act() : base(typeof(Act), nameof(Name), null)
 {
     AllowBlankSimpleKey = true;
     Sets = new SortedEntityCollection <Set>();
 }
Пример #7
0
 public Role() : base(typeof(Role), nameof(Name), null)
 {
     Credits = new SortedEntityCollection <Credit>();
 }
Пример #8
0
 public EventType() : base(typeof(EventType), nameof(Name), null)
 {
     Events = new SortedEntityCollection <Event>();
 }
Пример #9
0
 public Location() : base(typeof(Location), nameof(Name), null)
 {
     Events = new SortedEntityCollection <Event>();
 }
Пример #10
0
 public Artist() : base(typeof(Artist), nameof(Name), null)
 {
     Credits = new SortedEntityCollection <Credit>();
 }
Пример #11
0
 public Set() : base(typeof(Set), nameof(SetNo), typeof(Event))
 {
     Pieces   = new SortedEntityCollection <Piece>();
     IsPublic = true;
 }