/// <summary>
 /// A new league was formed
 /// </summary>
 public void HandleEvent(IFormed eventToHandle)
 {
     // Date Incorporated is set when a league is initially formed
     // Location is intially set when the league is formed
 }
コード例 #2
0
 /// <summary>
 /// Create And populate a New instance Of this Class from the underlying Interface
 /// </summary>
 /// <remarks>
 /// This should be called When the Event Is created from an Event stream
 /// </remarks>
 public Formed(IFormed FormedInit)
 {
     _Date_Incorporated = FormedInit.Date_Incorporated;
     _Location          = FormedInit.Location;
     _Notes             = FormedInit.Notes;
 }