public static AbbigliamentoECommerceEntity.Product ConvertoProdyctEntityTOSearchProductModel(AbbigliamentoECommerce.Models.SearchProduct pProduct)
 {
     AbbigliamentoECommerceEntity.Product wProduct = new AbbigliamentoECommerceEntity.Product();
     wProduct.categoria = pProduct.Category;
     wProduct.colore    = pProduct.Color;
     wProduct.marca     = pProduct.Brand;
     wProduct.nome      = pProduct.ProductName;
     wProduct.taglia    = pProduct.Headmoney;
     wProduct.modello   = pProduct.Model;
     return(wProduct);
 }
 public static AbbigliamentoECommerceEntity.Product ConvertoProdyctEntityTOProductModel(AbbigliamentoECommerce.Models.Product pProduct)
 {
     AbbigliamentoECommerceEntity.Product wProduct = new AbbigliamentoECommerceEntity.Product();
     wProduct.UId            = pProduct.Id;
     wProduct.categoria      = pProduct.Category;
     wProduct.colore         = pProduct.Color;
     wProduct.marca          = pProduct.Brand;
     wProduct.nome           = pProduct.ProductName;
     wProduct.prezzo         = pProduct.Price;
     wProduct.Quantity       = pProduct.Quantity;
     wProduct.modello        = pProduct.Model;
     wProduct.taglia         = pProduct.Headmoney;
     wProduct.UrlDownloadWeb = pProduct.Image;
     return(wProduct);
 }
 public static AbbigliamentoECommerce.Models.Product ConvertoProdyctModelTOProductEntity(AbbigliamentoECommerceEntity.Product pProduct)
 {
     AbbigliamentoECommerce.Models.Product wProduct = new AbbigliamentoECommerce.Models.Product();
     wProduct.Id           = pProduct.UId;
     wProduct.Category     = pProduct.categoria;
     wProduct.Color        = pProduct.colore;
     wProduct.Brand        = pProduct.marca;
     wProduct.ProductName  = pProduct.nome;
     wProduct.Price        = pProduct.prezzo;
     wProduct.Quantity     = pProduct.Quantity;
     wProduct.Headmoney    = pProduct.taglia;
     wProduct.Image        = pProduct.UrlDownloadWeb;
     wProduct.ListQuantity = new Dictionary <int, int>();
     for (int i = 0; i < wProduct.Quantity; i++)
     {
         wProduct.ListQuantity.Add(i, i + 1);
     }
     return(wProduct);
 }