public IActionResult GetSuppliersByCustomer([FromBody] CustomerEntity customer)
 {
     try
     {
         return(Ok(suppliersService.GetSuppliersByCustomer(customer)));
     }
     catch (Exception e)
     {
         log.LogError(e.Message + "\nin:" + e.StackTrace);
         return(Problem(null));
     }
 }