using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WindowsFormsApp1.OP { public interface IObserver { /// /// Receive update from subject /// void Update(ISubject subject); } }