Skip to content

Instantly share code, notes, and snippets.

@simplement-e
Created November 25, 2019 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simplement-e/d6d09f240c6bcf57029e0c75abeacd32 to your computer and use it in GitHub Desktop.
Save simplement-e/d6d09f240c6bcf57029e0c75abeacd32 to your computer and use it in GitHub Desktop.
Objets de données
class WishlistDetails
{
Guid Guid { get; set; }
string Libelle { get; set; }
CPointSoftware.ECommerce.Tools.NUIProviderModule+NuiWishlistHandler+WishlistLigne[] Lignes { get; set; }
}
class WishlistLigne
{
Guid Guid { get; set; }
Guid ArticleGuid { get; set; }
ArticlePhygitalBase Article { get; set; }
int Quantite { get; set; }
Guid? RealisationGuid { get; set; }
string RealisationLibelle { get; set; }
}
class ArticlePhygitalBase
{
decimal? AvisNote { get; set; }
bool EstEnPromo { get; set; }
decimal? PctRemise { get; set; }
Guid[] AllTags { get; set; }
string UrlExterne { get; set; }
string IntermediateImage { get; set; }
string Marque { get; set; }
decimal? SegmentationPrincipalePk { get; set; }
string MainImage { get; set; }
string SmallImage { get; set; }
Object MainImageObject { get; set; }
string Tag { get; set; }
bool DisponibleCommande { get; set; }
bool DisponibleCentrale { get; set; }
bool DisponibleMagasin { get; set; }
TypeStock TypeStockage { get; set; }
bool EstImmateriel { get; }
bool EstArchive { get; set; }
bool EstLivrable { get; set; }
long ID { get; set; }
Guid Guid { get; set; }
decimal PuHT { get; set; }
decimal PuTTC { get; set; }
decimal PuTVA { get; }
decimal? PuPromoHT { get; set; }
decimal? PuPromoTTC { get; set; }
DateTime? DateDebutPromo { get; set; }
DateTime? DateFinPromo { get; set; }
DateTime DateCreation { get; set; }
string Libelle { get; set; }
string Reference { get; set; }
int FamilleID { get; set; }
string Description { get; set; }
System.Int32? SousFamilleId { get; set; }
int MarqueId { get; set; }
byte TauxTvaId { get; set; }
short TypeArticleId { get; set; }
bool EstUtilisableInternet { get; set; }
bool EstPrefacturable { get; set; }
bool EstMultiversion { get; set; }
bool EstGenerique { get; set; }
bool EstCompose { get; set; }
bool EstPartenaire { get; set; }
bool EstValide { get; set; }
int EtatCreation { get; set; }
decimal? PuConseilleHT { get; set; }
decimal? PuConseilleTTC { get; set; }
MetaTypeArticle MetaType { get; set; }
bool PromoDefinie { get; }
int ScoreRisque { get; set; }
}
enum TypeStock
{
NonStocke, // =0
Immateriel, // =1
StockeFifo, // =2
StockePump, // =3
}
enum MetaTypeArticle
{
Produit, // =0
FraisDePort, // =1
Avantages, // =2
Services, // =3
Loyers, // =4
Lot, // =5
Financier, // =6
Taxe, // =7
LicenceEtBrevet, // =8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment