コード例 #1
0
ファイル: Product.cs プロジェクト: ripple182/ChimeraCMS
 public Product()
 {
     Id = string.Empty;
     Name = string.Empty;
     Description = string.Empty;
     Active = false;
     CreatedDateUtc = DateTime.MinValue;
     SearchPropertyList = new List<CEP.Property>();
     CheckoutPropertyList = new List<CEP.Property>();
     CheckoutPropertySettingsList = new List<CheckoutPropertySetting>();
     MainImage = new ProductImage();
     AdditionalImages = new List<ProductImage>();
     PurchaseSettings = new PurchaseSettings();
 }
コード例 #2
0
ファイル: Product.cs プロジェクト: sss-software/ChimeraCMS
 public Product()
 {
     Id                           = string.Empty;
     Name                         = string.Empty;
     Description                  = string.Empty;
     Active                       = false;
     CreatedDateUtc               = DateTime.MinValue;
     SearchPropertyList           = new List <CEP.Property>();
     CheckoutPropertyList         = new List <CEP.Property>();
     CheckoutPropertySettingsList = new List <CheckoutPropertySetting>();
     MainImage                    = new ProductImage();
     AdditionalImages             = new List <ProductImage>();
     PurchaseSettings             = new PurchaseSettings();
 }