Exemplo n.º 1
0
 public BetaSubscriber(int id, INewsPublisher publisher) : base(publisher)
 {
     Id = id;
 }
Exemplo n.º 2
0
 public AlphaSubscriber(Guid id, INewsPublisher publisher) : base(publisher)
 {
     Id = id;
 }
Exemplo n.º 3
0
 public SubscriberBase(INewsPublisher publisher)
 {
     _newsPublisher = publisher;
 }