コード例 #1
0
ファイル: OnlineShop.cs プロジェクト: cpopovici/internship
 public void Unsubscripe(ICustomerObserver customer)
 {
     _observers.Remove(customer);
 }
コード例 #2
0
ファイル: OnlineShop.cs プロジェクト: cpopovici/internship
 public void Subscribe(ICustomerObserver customer)
 {
     _observers.Add(customer);
 }