Exemple #1
0
 public ActionResult <bool> Update([FromBody] BusinessPartner value)
 {
     try
     {
         db.UpdateCompany(value);
         return(true);
     }
     catch (Exception)
     {
         throw;
     }
 }