From 60a2692fd4acadfdf8724bb198e38a2689a866fd Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Thu, 23 Jan 2020 14:34:55 +0200 Subject: Added new staple spun process parameters to database, BL and PMR. Implemented process params index via db. Added new process params in MS. Added JOB_RUN => Upload time, Heating Time, IsGradient... --- .../Visual_Studio/Tango.CodeGeneration/DbPropertyExtensionModel.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Software/Visual_Studio/Tango.CodeGeneration/DbPropertyExtensionModel.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/DbPropertyExtensionModel.cs b/Software/Visual_Studio/Tango.CodeGeneration/DbPropertyExtensionModel.cs index 873aabe1e..c02094273 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/DbPropertyExtensionModel.cs +++ b/Software/Visual_Studio/Tango.CodeGeneration/DbPropertyExtensionModel.cs @@ -12,6 +12,7 @@ namespace Tango.CodeGeneration public double Min { get; set; } public double Max { get; set; } public String StringFormat { get; set; } + public int? Index { get; set; } public bool HasDescription { @@ -28,6 +29,11 @@ namespace Tango.CodeGeneration get { return StringFormat != null; } } + public bool HasIndex + { + get { return Index != null; } + } + public DbPropertyExtensionModel() { StringFormat = "0.0"; -- cgit v1.3.1