This commit is contained in:
2020-01-27 18:34:38 +00:00
parent 85b7a38255
commit 20728c0224
9 changed files with 30 additions and 24 deletions

View File

@@ -20,9 +20,9 @@ namespace AyaNova.Biz
{
//THIS IS THE METHOD CALLED BY THE ATTACHMENT CONTROLLER
internal static bool Exists(AyaTypeId tid)
internal static async Task<bool> Exists(AyaTypeId tid)
{
return Exists(tid.ObjectType, tid.ObjectId);
return await Exists(tid.ObjectType, tid.ObjectId);
}