public async Task <IActionResult> Delete(int id)
        {
            await _repository.Remove(id);

            return(NoContent());
        }