public void LoadMMTProduct(MMTXMLProduct mmtprod)
        {
            this.mmtproduct = mmtprod;

            if (mmtproduct.Files != null)
            {
                _images = new List <string>();
                foreach (string image in mmtproduct.Files.LargeImageURL)
                {
                    _images.Add(image);
                }
            }
        }
 public MMTProduct(MMTXMLProduct mmtprod)
 {
     LoadMMTProduct(mmtprod);
 }