diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-07-24 16:45:32 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-07-24 16:45:32 +0300 |
| commit | c4e8c98689dcedf035484cd079eac8d9678286db (patch) | |
| tree | f7c21491c5528b7d83a730c078dfd896524904b4 /Software/Visual_Studio/Tango.BL/ObservablesContext.cs | |
| parent | d208f2029740f203ce79c6452432fa083a4c5c07 (diff) | |
| download | Tango-c4e8c98689dcedf035484cd079eac8d9678286db.tar.gz Tango-c4e8c98689dcedf035484cd079eac8d9678286db.zip | |
Added Washing test results tables
Related Work Items: #6660
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/ObservablesContext.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/ObservablesContext.cs | 132 |
1 files changed, 74 insertions, 58 deletions
diff --git a/Software/Visual_Studio/Tango.BL/ObservablesContext.cs b/Software/Visual_Studio/Tango.BL/ObservablesContext.cs index f62ae38bd..c06af8ba5 100644 --- a/Software/Visual_Studio/Tango.BL/ObservablesContext.cs +++ b/Software/Visual_Studio/Tango.BL/ObservablesContext.cs @@ -167,6 +167,70 @@ namespace Tango.BL } /// <summary> + /// Gets or sets the RmlExtensionColorCalibrations. + /// </summary> + public DbSet<RmlExtensionColorCalibration> RmlExtensionColorCalibrations + { + get; set; + } + + /// <summary> + /// Gets or sets the RmlExtensionColorCalibrationsTests. + /// </summary> + public DbSet<RmlExtensionColorCalibrationsTest> RmlExtensionColorCalibrationsTests + { + get; set; + } + + /// <summary> + /// Gets or sets the RmlExtensionColorCalibrationsTestsLiquidData. + /// </summary> + public DbSet<RmlExtensionColorCalibrationsTestsLiquidData> RmlExtensionColorCalibrationsTestsLiquidData + { + get; set; + } + + /// <summary> + /// Gets or sets the RmlExtensionColorCalibrationsTestsLiquidDataPoints. + /// </summary> + public DbSet<RmlExtensionColorCalibrationsTestsLiquidDataPoint> RmlExtensionColorCalibrationsTestsLiquidDataPoints + { + get; set; + } + + /// <summary> + /// Gets or sets the RmlExtensionColorShades. + /// </summary> + public DbSet<RmlExtensionColorShade> RmlExtensionColorShades + { + get; set; + } + + /// <summary> + /// Gets or sets the RmlExtensionColorShadesTests. + /// </summary> + public DbSet<RmlExtensionColorShadesTest> RmlExtensionColorShadesTests + { + get; set; + } + + /// <summary> + /// Gets or sets the RmlExtensionColorShadesTestsData. + /// </summary> + public DbSet<RmlExtensionColorShadesTestsData> RmlExtensionColorShadesTestsData + { + get; set; + } + + /// <summary> + /// Gets or sets the RmlExtensionTestResultsFiles. + /// </summary> + public DbSet<RmlExtensionTestResultsFile> RmlExtensionTestResultsFiles + { + get; set; + } + + /// <summary> /// Gets or sets the ActionLogs. /// </summary> public DbSet<ActionLog> ActionLogs @@ -703,65 +767,9 @@ namespace Tango.BL } /// <summary> - /// Gets or sets the RmlExtensionColorCalibrations. - /// </summary> - public DbSet<RmlExtensionColorCalibration> RmlExtensionColorCalibrations - { - get; set; - } - - /// <summary> - /// Gets or sets the RmlExtensionColorCalibrationsTests. - /// </summary> - public DbSet<RmlExtensionColorCalibrationsTest> RmlExtensionColorCalibrationsTests - { - get; set; - } - - /// <summary> - /// Gets or sets the RmlExtensionColorCalibrationsTestsLiquidData. - /// </summary> - public DbSet<RmlExtensionColorCalibrationsTestsLiquidData> RmlExtensionColorCalibrationsTestsLiquidData - { - get; set; - } - - /// <summary> - /// Gets or sets the RmlExtensionColorCalibrationsTestsLiquidDataPoints. - /// </summary> - public DbSet<RmlExtensionColorCalibrationsTestsLiquidDataPoint> RmlExtensionColorCalibrationsTestsLiquidDataPoints - { - get; set; - } - - /// <summary> - /// Gets or sets the RmlExtensionColorShades. - /// </summary> - public DbSet<RmlExtensionColorShade> RmlExtensionColorShades - { - get; set; - } - - /// <summary> - /// Gets or sets the RmlExtensionColorShadesTests. - /// </summary> - public DbSet<RmlExtensionColorShadesTest> RmlExtensionColorShadesTests - { - get; set; - } - - /// <summary> - /// Gets or sets the RmlExtensionColorShadesTestsData. - /// </summary> - public DbSet<RmlExtensionColorShadesTestsData> RmlExtensionColorShadesTestsData - { - get; set; - } - - /// <summary> - /// Gets or sets the RmlExtensionTestResultsFiles. + /// Gets or sets the RmlExtensionTestWashingResults. /// </summary> - public DbSet<RmlExtensionTestResultsFile> RmlExtensionTestResultsFiles + public DbSet<RmlExtensionTestWashingResult> RmlExtensionTestWashingResults { get; set; } @@ -959,6 +967,14 @@ namespace Tango.BL } /// <summary> + /// Gets or sets the WashingTestMaterials. + /// </summary> + public DbSet<WashingTestMaterial> WashingTestMaterials + { + get; set; + } + + /// <summary> /// Gets or sets the WindingMethods. /// </summary> public DbSet<WindingMethod> WindingMethods |
