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