public ProductController(IProductConnectAPI productConnectAPI, IProductImageConnectAPI productImageConnectAPI, IReViewProductConnectAPI reViewProductConnectAPI, ApplicationDbContext context)
 {
     _context = context;
     _reViewProductConnectAPI = reViewProductConnectAPI;
     _productImageConnectAPI  = productImageConnectAPI;
     _productConnectAPI       = productConnectAPI;
 }
 public ReViewProductController(IReViewProductConnectAPI reViewProductConnectAPI, IUserConnectAPI userConnectAPI)
 {
     _userConnectAPI          = userConnectAPI;
     _reViewProductConnectAPI = reViewProductConnectAPI;
 }