Exemplo n.º 1
0
 public void Unsub(IPostGai post)
 {
     this.posts.Remove(post);
     Console.WriteLine("Office: post " + post.GetName() + " has been unsubscribed from the office updates.");
 }
Exemplo n.º 2
0
 public void Sub(IPostGai post)
 {
     Console.WriteLine("Office: post " + post.GetName() + " has been subscribed to the office updates.");
     this.posts.Add(post);
 }