Exemple #1
0
 public IActionResult GetById([FromBody] int idCate)
 {
     if (idCate > 0)
     {
         var category = _CateRepo.GetByidCate(Convert.ToInt32(idCate));
         if (category != null)
         {
             return(Json(category));
         }
     }
     return(Json("0"));
 }