删除变量表的单元测试

This commit is contained in:
2025-07-24 21:01:03 +08:00
parent be1c14fab2
commit ffde374af2
3 changed files with 57 additions and 5 deletions

View File

@@ -11,6 +11,6 @@ namespace DMS.Application.Interfaces
Task<List<VariableTableDto>> GetAllVariableTablesAsync();
Task<VariableTableDto> CreateVariableTableAsync(CreateVariableTableWithMenuDto createDto);
Task UpdateVariableTableAsync(VariableTableDto variableTableDto);
Task DeleteVariableTableAsync(int id);
Task<bool> DeleteVariableTableAsync(int id);
}
}