Exemplo n.º 1
0
        public async Task <ApiResult> Delete(int id)
        {
            var affrows = await _bookCategoryServices.DeleteIncludeChildsAsync(id);

            return(ApiResult.OK($"受影响的行数:{affrows}"));
        }