예제 #1
0
 public IHttpActionResult ObterFundoInvestimento(FiltroObterFundoDTO filtro)
 {
     try
     {
         return(Ok(_fundosService.ObterFundoInvestimento(filtro)));
     }
     catch (Exception ex)
     {
         log.Error("Erro ObterFundoInvestimento: " + ex);
         throw ex;
     }
 }