9.3: IObservable


#region usings
using System;
using System.Collections.Generic;
using System.Text;
#endregion

namespace FgfsSharp
{
public interface IObservable
{
void RegisterObserver(IObserver observer);
void RemoveObserver(IObserver observer);
void NotifyObservers();
}
}

Leave a comment