public IActionResult Delete(int id)
 {
     if (_contaAPagarService.Excluir(id))
     {
         return(Ok());
     }
     return(null);
 }