Exemple #1
0
 public Article(string Code, string Name, float Price, Article.ArticleType Type)
 {
     this.Code  = Code;
     this.Name  = Name;
     this.Price = Price;
     this.Type  = Type;
 }
Exemple #2
0
 public viewStore()
 {
     InitializeComponent();
     ArtTypeFood = Article.ArticleType.Food;
     ArtTypeItem = Article.ArticleType.Item;
     dh          = new DataHelper();
 }