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 !!!! --- .../Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFile.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFile.cshtml') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFile.cshtml b/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFile.cshtml index dfcceb1dd..698a79b34 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFile.cshtml +++ b/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFile.cshtml @@ -30,7 +30,7 @@ namespace Tango.BL.Entities } [Table("@(Model.TableName)")] - public partial class @(Model.Name) : ObservableEntity<@(Model.Name)> + public abstract class @(Model.Name) : ObservableEntity<@(Model.Name.Replace("Base",""))> { @foreach (var prop in Model.Fields) { -- cgit v1.3.1