예제 #1
0
        public async Task <ActionResult <AccountType> > DeleteAccount(string id)
        {
            await _accountTypeRepository.DeleteAccount(id);

            return(new OkResult());
        }