Facebook
From Test, 6 Years ago, written in C#.
Embed
Download Paste or View Raw
Hits: 237
  1.         public class ExportElement
  2.         {
  3.             public int ExportElementId { get; set; }
  4.             public int ProductDefinitionId { get; set; }
  5.             public string ProductDefinitionFullName { get; set; }
  6.             public long ProductId { get; set; }
  7.             public string Name { get; set; }
  8.             public string SerialNo { get; set; }
  9.             public string ValidityDate { get; set; }
  10.             public double? Quantity { get; set; }
  11.             public int ExportElementStateId { get; set; }
  12.             public string Barcode { get; set; }
  13.             public double? DefinitionCount { get; set; }
  14.             public string EAN { get; set; }
  15.             public string ProductUnitName { get; set; }
  16.             public string ShortName { get; set; }
  17.             public int? ExternalImportId { get; set; }
  18.             public string DoseType { get; set; }
  19.             public bool IsWarning { get; set; }
  20.             public bool? IsActive { get; set; }
  21.             public string Warning { get; set; }
  22.             public double CountInBox { get; set; }
  23.             public bool IsInActiveExport { get; set; }
  24.             public int? PatientId { get; set; }
  25.         }