// GET: api/Category/5 public CategoryJson Get(int id) { var categoryJson = categoryLogic.Get(id); return(categoryJson); }
public void GetCategory() { CategoryDTO newCategory = categoryLogic.Get(category.Id); Assert.AreEqual(category.Id, newCategory.Id); }