public Calendar(string id, CalendarBounds bounds, IEnumerable <Reservation> entries) : this(id, bounds)
 {
     Reservations = entries.ToList();
 }
 public Calendar(string id, CalendarBounds bounds)
 {
     Id           = id;
     Bounds       = bounds;
     Reservations = new List <Reservation>();
 }