From 05444891b280308b84ebf6b66e694b4885590884 Mon Sep 17 00:00:00 2001 From: Roy Date: Mon, 18 Dec 2017 21:19:34 +0200 Subject: Auto Generate DAL entities for Java !!! --- .../Tango.CodeGeneration/EntityCodeFileJava.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs new file mode 100644 index 000000000..d2bfd80fc --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + public class EntityCodeFileJava : Class + { + public String EntityName { get; set; } + + public String TableName { get; set; } + + public List Fields { get; set; } + + public EntityCodeFileJava(String name) : base(name) + { + Fields = new List(); + } + } +} -- cgit v1.3.1