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

            return(Ok());
        }