2025-10-07 17:51:24 +08:00
|
|
|
|
2025-07-24 19:51:16 +08:00
|
|
|
using DMS.Application.DTOs;
|
2025-10-07 17:51:24 +08:00
|
|
|
using DMS.Core.Models;
|
2025-07-24 19:51:16 +08:00
|
|
|
|
2025-09-16 12:29:09 +08:00
|
|
|
namespace DMS.Application.Interfaces.Database
|
2025-07-24 19:51:16 +08:00
|
|
|
{
|
|
|
|
|
public interface IVariableTableAppService
|
|
|
|
|
{
|
2025-10-07 17:51:24 +08:00
|
|
|
Task<VariableTable> GetVariableTableByIdAsync(int id);
|
|
|
|
|
Task<List<VariableTable>> GetAllVariableTablesAsync();
|
2025-07-30 12:54:14 +08:00
|
|
|
Task<CreateVariableTableWithMenuDto> CreateVariableTableAsync(CreateVariableTableWithMenuDto createDto);
|
2025-10-07 17:51:24 +08:00
|
|
|
Task<int> UpdateVariableTableAsync(VariableTable variableTableDto);
|
2025-07-24 21:01:03 +08:00
|
|
|
Task<bool> DeleteVariableTableAsync(int id);
|
2025-07-24 19:51:16 +08:00
|
|
|
}
|
|
|
|
|
}
|