Exemple #1
0
 public IHttpActionResult Put(Productattribute productattribute)
 {
     _repository.Put(productattribute.Id, productattribute);
     return(Json("OK"));
 }
Exemple #2
0
 public IHttpActionResult Post(Productattribute productattribute)
 {
     _repository.Post(productattribute);
     return(Json(productattribute));
 }