blob: b6780f7d665a8ef20d87b0f95c156c04468283ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tango.DAL.Remote.DB
{
using System;
using System.Collections.Generic;
public partial class RML
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public RML()
{
this.CATS = new HashSet<CAT>();
this.CCTS = new HashSet<CCT>();
this.JOBS = new HashSet<JOB>();
this.LIQUID_TYPES_RMLS = new HashSet<LIQUID_TYPES_RMLS>();
this.PROCESS_PARAMETERS_TABLES_GROUPS = new HashSet<PROCESS_PARAMETERS_TABLES_GROUPS>();
}
public int ID { get; set; }
public string GUID { get; set; }
public System.DateTime LAST_UPDATED { get; set; }
public string NAME { get; set; }
public string MANUFACTURER { get; set; }
public int CODE { get; set; }
public string MEDIA_MATERIAL_GUID { get; set; }
public string MEDIA_COLOR_GUID { get; set; }
public string MEDIA_PURPOSE_GUID { get; set; }
public string MEDIA_CONDITION_GUID { get; set; }
public string LINEAR_MASS_DENSITY_UNIT_GUID { get; set; }
public string FIBER_SHAPE_GUID { get; set; }
public string FIBER_SYNTH_GUID { get; set; }
public double FIBER_SIZE { get; set; }
public int NUMBER_OF_FIBERS { get; set; }
public int PLIES_PER_FIBER { get; set; }
public int PLIES_PER_THREAD { get; set; }
public bool TWISTED { get; set; }
public bool AIR_ENTANGLEMENT { get; set; }
public bool LUBRICANT { get; set; }
public double TENSILE_STRENGTH { get; set; }
public double ELONGATION_AT_BREAK_PERCENTAGE { get; set; }
public double ESTIMATED_THREAD_DIAMETER { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<CAT> CATS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<CCT> CCTS { get; set; }
public virtual FIBER_SHAPES FIBER_SHAPES { get; set; }
public virtual FIBER_SYNTHS FIBER_SYNTHS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<JOB> JOBS { get; set; }
public virtual LINEAR_MASS_DENSITY_UNITS LINEAR_MASS_DENSITY_UNITS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<LIQUID_TYPES_RMLS> LIQUID_TYPES_RMLS { get; set; }
public virtual MEDIA_COLORS MEDIA_COLORS { get; set; }
public virtual MEDIA_CONDITIONS MEDIA_CONDITIONS { get; set; }
public virtual MEDIA_MATERIALS MEDIA_MATERIALS { get; set; }
public virtual MEDIA_PURPOSES MEDIA_PURPOSES { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<PROCESS_PARAMETERS_TABLES_GROUPS> PROCESS_PARAMETERS_TABLES_GROUPS { get; set; }
}
}
|