public JsonResult GetProductsByCategoryId(int id) =>
 Json(new SelectList(detailRepository.GetListProductByCategoryId(id), "Id", "Name"));