예제 #1
0
        public bool DelAccount(string cuenta)
        {
            bool res;

            try
            {
                res = model.DelAccount(cuenta);
            }
            catch (Exception)
            {
                throw;
            }

            return(res);
        }