Esempio n. 1
0
 public Label(Item item, LabelLayout layout)
 {
     Description = item.GetDescription().ToString(2);
     Id = item.Id;
     InventoryAbbreviation = "KWTZ";
     Layout = layout;
 }
Esempio n. 2
0
 public Label(LabelLayout layout)
 {
     Description = "Label Test Item\nBed, Home, Time, Tracking";
     InventoryAbbreviation = "KWTZ";
     Id = 1337;
     Layout = layout;
 }
Esempio n. 3
0
 public LabelRenderer(Model.Item item, LabelLayout layout)
     : base(item,layout)
 {
 }
Esempio n. 4
0
 public LabelRenderer(LabelLayout layout)
     : base(layout)
 {
 }