Esempio n. 1
0
 // GET api/Categories/5
 public IEnumerable<object> Get(int id)
 {
     ICategoryService categoryService = new CategoryService();
     return categoryService.GetCategory(id);
 }