public ActionResult Delete(int id, string tokenLogin)
 {
     return(Ok(
                componentTypeService.Delete(id, tokenLogin)
                ));
 }
Esempio n. 2
0
 public ActionResult Delete(int id)
 {
     return(Ok(
                componentTypeService.Delete(id)
                ));
 }