Ejemplo n.º 1
0
 public void Remove(ISongComponent component)
 {
     components.Remove(component);
 }
Ejemplo n.º 2
0
 public void Add(ISongComponent component)
 {
     components.Add(component);
 }
Ejemplo n.º 3
0
 public void Add(ISongComponent component)
 {
     //Console.WriteLine("You cannot add to a song");
     throw new NotSupportedException();
 }
Ejemplo n.º 4
0
 public void Remove(ISongComponent component)
 {
     //Console.WriteLine("You cannot remove from a song");
     throw new NotSupportedException();
 }
Ejemplo n.º 5
0
 public void Remove(ISongComponent component)
 {
     throw new NotImplementedException();
 }