Beispiel #1
0
 /// <summary>
 /// This method validate the passed group against the business rules before passing it on to the persistance layer, see <see cref="ValidateGroup(Group)"/>
 /// </summary>
 /// <param name="toAdd">The group to be added</param>
 public void AddGroup(Group toAdd)
 {
     ValidateGroup(toAdd);
     app.AddGroup(toAdd);
 }