// PUT: api/Brand/5 public IHttpActionResult Put([FromBody] Brands brand) { var response = _IBrandManager.UpdateBrand(brand); return(Ok(response)); }