diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-11-01 19:44:34 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-11-01 19:44:34 +0200 |
| commit | bab9f04ae0f251acdb759e72fb54d84d042c533e (patch) | |
| tree | 6df0d31b90ee7c9c7075c0f45c5fc6a09ab1b3ab /Software/Visual_Studio/Tango.BL/DTO | |
| parent | d2a95e54a3ae4fb7ff8b29bd85bb221cf3769a1f (diff) | |
| download | Tango-bab9f04ae0f251acdb759e72fb54d84d042c533e.tar.gz Tango-bab9f04ae0f251acdb759e72fb54d84d042c533e.zip | |
Added Ha Amma spool support via sites.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTO.cs | 14 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTOBase.cs | 41 |
2 files changed, 55 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTO.cs new file mode 100644 index 000000000..d0bff20b8 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTO.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 SitesSpoolTypeDTO : SitesSpoolTypeDTOBase + { + + } +} diff --git a/Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTOBase.cs new file mode 100644 index 000000000..3e25edd63 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/DTO/SitesSpoolTypeDTOBase.cs @@ -0,0 +1,41 @@ + +//------------------------------------------------------------------------------ +// <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 SitesSpoolTypeDTOBase : ObservableEntityDTO<SitesSpoolTypeDTO, SitesSpoolType> + { + + /// <summary> + /// site guid + /// </summary> + public String SiteGuid + { + get; set; + } + + /// <summary> + /// spool type guid + /// </summary> + public String SpoolTypeGuid + { + get; set; + } + + } +} |
