public ActionResult Put([FromBody] ComponentType componentType, string tokenLogin)
 {
     return(Ok(
                componentTypeService.Update(componentType, tokenLogin)
                ));
 }
Esempio n. 2
0
 public ActionResult Put([FromBody] ComponentType componentType)
 {
     return(Ok(
                componentTypeService.Update(componentType)
                ));
 }