Exemple #1
0
        public async Task <IActionResult> Delete(int id)
        {
            await _teamManager.DeleteAsync(id);

            return(Ok(new ApiResponse(_localizationService, _logger).Ok(true)));
        }