diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-27 20:35:08 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-27 20:35:08 +0200 |
| commit | 7060dc80c707fc0441ff69fe4f899107cb3f6fc1 (patch) | |
| tree | a72e2cf1be9fcce77e27446d93501bfc9b452265 /Software/Visual_Studio/Tango.DAL.Remote/DB/RML.cs | |
| parent | d1038a08bdf51b1310be4ef00ebe9e21b0e12f81 (diff) | |
| download | Tango-7060dc80c707fc0441ff69fe4f899107cb3f6fc1.tar.gz Tango-7060dc80c707fc0441ff69fe4f899107cb3f6fc1.zip | |
Split DAL to DAl.Local & DAL.Remote due to ambiguity of table names in EF.
Implemented Unit testing for SQLite & SQL Server connections.
Diffstat (limited to 'Software/Visual_Studio/Tango.DAL.Remote/DB/RML.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.DAL.Remote/DB/RML.cs | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/RML.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/RML.cs new file mode 100644 index 000000000..e43af9f36 --- /dev/null +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/RML.cs @@ -0,0 +1,56 @@ +//------------------------------------------------------------------------------ +// <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.LIQUIDS_RML = new HashSet<LIQUIDS_RML>(); + } + + public int ID { get; set; } + public System.Guid GUID { get; set; } + public System.DateTime LAST_UPDATED { get; set; } + public bool DELETED { get; set; } + public string MANUFACTURER { get; set; } + public int MATERIAL_ID { get; set; } + public int COLOR_ID { get; set; } + public int PURPOSE_ID { get; set; } + public int CONDITION_ID { get; set; } + public int LINEAR_MASS_DENSITY_UNIT_ID { get; set; } + public int FIBER_SHAPE_ID { get; set; } + public int FIBER_SYNTHESIS_ID { 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; } + + public virtual FIBER_SHAPES FIBER_SHAPES { get; set; } + public virtual FIBER_SYNTHESIS FIBER_SYNTHESIS { 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<LIQUIDS_RML> LIQUIDS_RML { 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; } + } +} |
