public IActionResult GetCartItem(string catid)
 {
     try
     {
         return(Ok(_ibuyrepo.GetCartItem(catid)));
     }
     catch (Exception ex)
     {
         return(NotFound(ex.Message));
     }
 }