Esempio n. 1
0
 public ListSelectionJournalEntry(
     List <string> sourceItems, List <string> targetItems, string journalName, ReplayListChange replayListChange)
 {
     SourceItems       = sourceItems;
     TargetItems       = targetItems;
     _journalName      = journalName;
     _replayListChange = replayListChange;
 }
Esempio n. 2
0
 public ListSelectionJournalEntry(
     List <String> sourceItems, List <String> targetItems,
     string journalName, ReplayListChange replayListChange)
 {
     this.sourceItems      = sourceItems;
     this.targetItems      = targetItems;
     this.journalName      = journalName;
     this.replayListChange = replayListChange;
 }
Esempio n. 3
0
 public ListSelectionJournalEntry(
     List<String> sourceItems, List<String> targetItems, 
     string journalName, ReplayListChange replayListChange)
 {
     this.sourceItems = sourceItems;
     this.targetItems = targetItems;
     this.journalName = journalName;
     this.replayListChange = replayListChange;
 }
Esempio n. 4
0
 public PlayListJournalEntry(PlayListData PLD, ReplayListChange replayListChange, object curSelected = null)
 {
     this.PLD = PLD;
     this.replayListChange = replayListChange;
     this.curSelected      = curSelected;
 }