public void GetProductLocation(out IProduct currentProduct, out IModule currentModule)
 {
     currentProduct = null;
     currentModule  = null;
     if (HttpContext.Current != null)
     {
         CommonLinkUtility.GetLocationByRequest(out currentProduct, out currentModule);
     }
 }