Exemple #1
0
 public Property Update(int typeId, string newValue, int attributeId) =>
 _repository.Update(typeId, newValue, attributeId);
 public Response Put([FromBody] Property value)
 {
     return(repo.Update(value));
 }