public void AddAssociationEnd(Association association, PIMClass newClass)
        {
            AddAnotherAssociationEndCommand addAnotherAssociationEndCommand =
                (AddAnotherAssociationEndCommand)AddAnotherAssociationEndCommandFactory.Factory().Create(DiagramController.ModelController);

            addAnotherAssociationEndCommand.Association = association;
            addAnotherAssociationEndCommand.Class       = newClass;
            addAnotherAssociationEndCommand.Execute();
        }
 public AssociationController(Association association, DiagramController diagramController) :
     base(association, diagramController)
 {
 }