From 185865c043b5fdaffef5356e305e0cc553ccc126 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 3 Jan 2019 13:36:10 +0200 Subject: Added new BL entities with inheritance !!!! --- .../Templates/EntityInheritedCodeFile.cshtml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityInheritedCodeFile.cshtml (limited to 'Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityInheritedCodeFile.cshtml') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityInheritedCodeFile.cshtml b/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityInheritedCodeFile.cshtml new file mode 100644 index 000000000..2f54067a2 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityInheritedCodeFile.cshtml @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.BL.Entities +{ + public partial class @(Model.Name) : @(Model.BaseClass) + { + /// + /// Initializes a new instance of the class. + /// + public @(Model.Name)() : base() + { + + } + } +} \ No newline at end of file -- cgit v1.3.1