public IHttpActionResult Put(Stockshipmentattribute stockshipmentattribute)
 {
     _repository.Put(stockshipmentattribute.Id, stockshipmentattribute);
     return(Json("OK"));
 }
 public IHttpActionResult Post(Stockshipmentattribute stockshipmentattribute)
 {
     _repository.Post(stockshipmentattribute);
     return(Json(stockshipmentattribute));
 }