示例#1
0
        public String DeleteAccount(string acctno)
        {
            var successful = AccountDB.DeleteAccount(acctno);

            return("Account " + acctno + (successful ? " deleted" : " does not exist"));
        }