This commit is contained in:
2021-01-19 23:25:48 +00:00
parent 26ca0872a1
commit ac52aaa5ad
14 changed files with 896 additions and 3 deletions

View File

@@ -48,6 +48,8 @@ namespace AyaNova.Biz
return await ct.Memo.AnyAsync(z => z.Id == id);
case AyaType.Part:
return await ct.Part.AnyAsync(z => z.Id == id);
case AyaType.PartWarehouse:
return await ct.PartWarehouse.AnyAsync(z => z.Id == id);
case AyaType.PartAssembly:
return await ct.PartAssembly.AnyAsync(z => z.Id == id);
case AyaType.PM: