示例#1
0
        public async Task <ActionResult> Delete(Guid uuid)
        {
            int result = await _staffService.DeleteSoftAsync(uuid);

            if (result > 0)
            {
                return(Ok());
            }
            return(NotFound());
        }