Esempio n. 1
0
 //copy constructor
 public SpeakerAttribute(SpeakerAttribute a)
 {
     this.ID = a.ID;
     this.Name = a.Name;
     this.Value = a.Value;
     this.Date = a.Date;
 }
Esempio n. 2
0
 private void ButtonAddAttributeClick(object sender, RoutedEventArgs e)
 {
     SpeakerAttribute sa = new SpeakerAttribute("", Settings.Default.SpeakerAttributteCategories[0], "");
     SpeakerContainer.AttributesAdd(sa);
 }
Esempio n. 3
0
 internal void AttributesRemove(SpeakerAttribute speakerAttribute)
 {
     _RemovedAttributes.Add(speakerAttribute);
     RefreshAttributes();
     Changed = true;
 }
Esempio n. 4
0
 public SpeakerAttributeContainer(SpeakerAttribute a)
 {
     _a = a;
 }
Esempio n. 5
0
 internal void AttributesAdd(SpeakerAttribute sa)
 {
     _AddedAttributes.Add(sa);
     RefreshAttributes();
     Changed = true;
 }