public ActionResult <bool> SetCustomerPONumber([FromBody] CustomerPONumberView value)
 {
     try
     {
         var result = db.SetCustomerPONumber(value);
         return(result);
     }
     catch (Exception)
     {
         throw;
     }
 }