Skip to content

Instantly share code, notes, and snippets.

@simplement-e
Created January 24, 2019 04:52
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/48a599ee079bb2591da1265d96d6758c to your computer and use it in GitHub Desktop.
Save simplement-e/48a599ee079bb2591da1265d96d6758c to your computer and use it in GitHub Desktop.
Objets de données
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; }
int? 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; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment