From c16f47eb401a12f034eecf75924680262285e1f4 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 19 Mar 2018 18:16:30 +0200 Subject: Working on android DAL. --- .../Templates/EntityCodeFileJavaExtension.cshtml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFileJavaExtension.cshtml (limited to 'Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFileJavaExtension.cshtml') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFileJavaExtension.cshtml b/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFileJavaExtension.cshtml new file mode 100644 index 000000000..8498f3311 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFileJavaExtension.cshtml @@ -0,0 +1,11 @@ +package com.twine.tango.dal.entities; + +import com.raizlabs.android.dbflow.annotation.Table; +import com.twine.tango.dal.TangoDB; + +@@Table(name = "@(Model.TableName)", database = TangoDB.class, cachingEnabled = true) +public class @(Model.Name) extends @(Model.Extends) +{ + + +} -- cgit v1.3.1