public async Task <IActionResult> get() { try { var response = await invenotryServices.getProduct(); return(Ok(response)); } catch (Exception ex) { _logger.LogWarning(LogEvents.ExeptionError, ex, "Error Exception"); return(BadRequest(ex.ToString())); } }