Exemplo n.º 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;
     ArchiveFileID       = archiveFile.ArchiveFileID;
     ShowRundownAuthorID = showRundownAuthor.ShowRundownAuthorID;
     AirDate             = airDate;
     DetailsUrl          = detailsUrl;
 }
Exemplo n.º 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;
 }