public void AddEvent()
 {
     //数据验证过程
     if (!new AccountSetValidater(_IAccountSetView).Vaildate())
     {
         return;
     }
     //执行事务过程
     try
     {
         List <AccountSetItem> accountSetItems = AccountSetUtility.RemoveNullItem(_IAccountSetView.AccountSetItemList);
         _IAccountSetFacade.CreateAccountSetFacade(_IAccountSetView.AccountSetName, _IAccountSetView.Description,
                                                   accountSetItems);
         ToAccountSetListPage();
     }
     catch (ApplicationException ae)
     {
         _IAccountSetView.Message = ae.Message;
     }
 }