aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-15 17:19:40 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-15 17:19:40 +0200
commit2bfa60ab677ec1da8f968614015ac0147694d31e (patch)
tree3af8f956cc678961ae69cf4813a7d3f7c762c0df /Software/Visual_Studio/Tango.BL/DTO
parent8a4a7818428d7b203cb28082c720c74831b2165f (diff)
downloadTango-2bfa60ab677ec1da8f968614015ac0147694d31e.tar.gz
Tango-2bfa60ab677ec1da8f968614015ac0147694d31e.zip
BTSR DB, BL & PMR.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTO.cs14
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTOBase.cs49
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTO.cs14
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTOBase.cs49
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTableDTOBase.cs24
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/RmlDTOBase.cs16
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/RmlsSpoolDTOBase.cs8
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/SpoolTypeDTOBase.cs8
8 files changed, 182 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTO.cs
new file mode 100644
index 000000000..5b70ab2db
--- /dev/null
+++ b/Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTO.cs
@@ -0,0 +1,14 @@
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.BL.DTO
+{
+ public class BtsrApplicationTypeDTO : BtsrApplicationTypeDTOBase
+ {
+
+ }
+}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTOBase.cs
new file mode 100644
index 000000000..31aef5fca
--- /dev/null
+++ b/Software/Visual_Studio/Tango.BL/DTO/BtsrApplicationTypeDTOBase.cs
@@ -0,0 +1,49 @@
+
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Tango Observables Generator
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated. Do not modify!
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.BL.Entities;
+
+namespace Tango.BL.DTO
+{
+ public abstract class BtsrApplicationTypeDTOBase : ObservableEntityDTO<BtsrApplicationTypeDTO, BtsrApplicationType>
+ {
+
+ /// <summary>
+ /// code
+ /// </summary>
+ public Int32 Code
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// name
+ /// </summary>
+ public String Name
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// description
+ /// </summary>
+ public String Description
+ {
+ get; set;
+ }
+
+ }
+}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTO.cs
new file mode 100644
index 000000000..41f2b3fd4
--- /dev/null
+++ b/Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTO.cs
@@ -0,0 +1,14 @@
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.BL.DTO
+{
+ public class BtsrYarnTypeDTO : BtsrYarnTypeDTOBase
+ {
+
+ }
+}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTOBase.cs
new file mode 100644
index 000000000..31b7f04f0
--- /dev/null
+++ b/Software/Visual_Studio/Tango.BL/DTO/BtsrYarnTypeDTOBase.cs
@@ -0,0 +1,49 @@
+
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Tango Observables Generator
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated. Do not modify!
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.BL.Entities;
+
+namespace Tango.BL.DTO
+{
+ public abstract class BtsrYarnTypeDTOBase : ObservableEntityDTO<BtsrYarnTypeDTO, BtsrYarnType>
+ {
+
+ /// <summary>
+ /// code
+ /// </summary>
+ public Int32 Code
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// name
+ /// </summary>
+ public String Name
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// description
+ /// </summary>
+ public String Description
+ {
+ get; set;
+ }
+
+ }
+}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTableDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTableDTOBase.cs
index f0699bc72..3207c0a0d 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTableDTOBase.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTableDTOBase.cs
@@ -285,5 +285,29 @@ namespace Tango.BL.DTO
get; set;
}
+ /// <summary>
+ /// btsr feeding tension
+ /// </summary>
+ public Double BtsrFeedingTension
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// btsr exit tension
+ /// </summary>
+ public Double BtsrExitTension
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// btsr thread length offset
+ /// </summary>
+ public Double BtsrThreadLengthOffset
+ {
+ get; set;
+ }
+
}
}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/RmlDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/RmlDTOBase.cs
index 4530ae25d..5a13afe18 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/RmlDTOBase.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/RmlDTOBase.cs
@@ -389,5 +389,21 @@ namespace Tango.BL.DTO
get; set;
}
+ /// <summary>
+ /// btsr application type guid
+ /// </summary>
+ public String BtsrApplicationTypeGuid
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// btsr yarn type guid
+ /// </summary>
+ public String BtsrYarnTypeGuid
+ {
+ get; set;
+ }
+
}
}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/RmlsSpoolDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/RmlsSpoolDTOBase.cs
index 1598a321f..c17e2b426 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/RmlsSpoolDTOBase.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/RmlsSpoolDTOBase.cs
@@ -69,5 +69,13 @@ namespace Tango.BL.DTO
get; set;
}
+ /// <summary>
+ /// btsr spool tension
+ /// </summary>
+ public Nullable<Int32> BtsrSpoolTension
+ {
+ get; set;
+ }
+
}
}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/SpoolTypeDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/SpoolTypeDTOBase.cs
index 5b02cb536..f16b07d53 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/SpoolTypeDTOBase.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/SpoolTypeDTOBase.cs
@@ -109,5 +109,13 @@ namespace Tango.BL.DTO
get; set;
}
+ /// <summary>
+ /// btsr spool tension
+ /// </summary>
+ public Int32 BtsrSpoolTension
+ {
+ get; set;
+ }
+
}
}