namespace Core.Common.Base { /// /// Interface that describes the methods that need to be implemented on classes that are supposed to be observer. /// /// public interface IObserver { /// /// This method performs an update of the , triggered by a notification of an . /// void UpdateObserver(); } }