public Episode(int id, Season season, string title, int duration, string filePath) : base(id, title)
 {
     this.duration = duration;
     this.filePath = filePath;
     this.season   = season;
 }
 public Episode(MetaData meta, Season season, int duration) : base(meta)
 {
     this.duration = duration;
     this.season   = season;
 }
 public Episode(int id, Season season, string title, string originalTitle, string description, int duration, string filePath) : base(id, title, originalTitle, description)
 {
     this.duration = duration;
     this.filePath = filePath;
     this.season   = season;
 }