Beispiel #1
0
 public ShowRundown(
     [NotNull] string showRundownName,
     [CanBeNull] string showRundownContent,
     [NotNull] ArchiveFile archiveFile,
     [NotNull] ShowRundownAuthor showRundownAuthor,
     DateTime airDate,
     [NotNull] string detailsUrl)
     : this()
 {
     ShowRundownName    = showRundownName;
     ShowRundownContent = showRundownContent;
     ArchiveFile        = archiveFile;
     ShowRundownAuthor  = showRundownAuthor;
     AirDate            = airDate;
     DetailsUrl         = detailsUrl;
 }
Beispiel #2
0
 private ShowRundown(
     int showRundownID,
     [NotNull] string showRundownName,
     [CanBeNull] string showRundownContent,
     [NotNull] ArchiveFile archiveFile,
     [NotNull] ShowRundownAuthor showRundownAuthor,
     DateTime airDate,
     [NotNull] string detailsUrl)
     : this(
         showRundownName,
         showRundownContent,
         archiveFile,
         showRundownAuthor,
         airDate,
         detailsUrl)
 {
     ShowRundownID = showRundownID;
 }