From 17612c08da93c75d4c941a643bc7602c18f351d8 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Sat, 23 Feb 2019 20:15:36 +0200 Subject: Implemented auto DTO generation. Implemented mapping of DTO <=> Observables. Organization of unit tests. Removed DELETED from ADDRESS & CONTACT. --- .../EntityInheritedDTOCodeFile.cs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/EntityInheritedDTOCodeFile.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityInheritedDTOCodeFile.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EntityInheritedDTOCodeFile.cs b/Software/Visual_Studio/Tango.CodeGeneration/EntityInheritedDTOCodeFile.cs new file mode 100644 index 000000000..297050d69 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/EntityInheritedDTOCodeFile.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + /// + /// Represents a database entity DTO code file. + /// + /// + public class EntityInheritedDTOCodeFile : Class + { + public String BaseClass { get; set; } + + public EntityInheritedDTOCodeFile(String name, String baseClass) + { + Name = name; + BaseClass = baseClass; + } + } +} -- cgit v1.3.1