示例#1
0
        public async Task <IActionResult> deleteCustomerById(int id)
        {
            bool status = false;

            try
            {
                status = await _customerFacade.DeleteCustomerById(id);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(base.Ok(status));
        }