Exemple #1
0
 public TypeModel UpdateType(long id, [FromBody] UpdateTypeModel model)
 {
     model.Id = id;
     return(_typeLib.UpdateType(model));
 }