示例#1
0
 public Enterprise ShowEnterpriseByID(int entrepriseId)
 {
     return(ioasysApiAdapter.ShowEnterpriseByID(entrepriseId));
 }
示例#2
0
 public IActionResult ShowEnterpriseByID([FromServices] IIoasysApiAdapter ioasysApiAdapter, int entrepriseId)
 {
     logger.LogInformation("Obtendo Empreedimentos para o id {entrepriseId}", entrepriseId);
     return(Ok(ioasysApiAdapter.ShowEnterpriseByID(entrepriseId)));
 }