public IActionResult AddFundo([FromBody] FundoCapital fundo)
 {
     _repository.AddFundo(fundo);
     return(Ok());
 }