Ejemplo n.º 1
0
        private void DeleteAKA()
        {
            try
            {
                if (UIHelper.ConfirmDelete())
                {
                    CurrentRowAKA().Delete();
                    aKABindingSource.EndEdit();

                    atLogic.BusinessProcess bp = FM.GetBP();
                    bp.AddForUpdate(FM.GetAKA());

                    bp.Update();
                }
            }
            catch (Exception x)
            {
                throw x;
            }
        }