public void Put(string id, Category entity)
		{
			if (ModelState.IsValid)
			{
				db.UpdateCategory(entity.GetPrivateEntity<Category>());
			}
		}