This commit is contained in:
2020-04-10 19:48:35 +00:00
parent 34708e7e2e
commit a868018ecf
3 changed files with 34 additions and 17 deletions

View File

@@ -15,6 +15,10 @@ namespace AyaNova.Biz
//Returns existance status of object type and id specified in database
internal static string Name(AyaType aytype, long id, System.Data.Common.DbCommand cmd)
{
if (aytype == AyaType.NoType || id == 0)
{
return "-";
}
string TABLE = string.Empty;
string COLUMN = "name";
//CoreBizObject add here