public IActionResult GetCartByCustId(int custId)
 {
     try
     {
         return(Ok(cartService.GetCartByCustId(custId)));
     }
     catch
     {
         return(NotFound());
     }
 }