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-10-23 16:25:22 +08:00
|
|
|
Task<CreateVariableTableWithMenuDto> AddAsync(CreateVariableTableWithMenuDto createDto);
|
|
|
|
|
Task<int> UpdateAsync(VariableTable variableTableDto);
|
|
|
|
|
Task<bool> DeleteAsync(VariableTable variableTable);
|
2025-07-24 19:51:16 +08:00
|
|
|
}
|
|
|
|
|
}
|