using DMS.Application.DTOs; using System.Collections.Generic; using System.Threading.Tasks; namespace DMS.Application.Interfaces { public interface IVariableTableAppService { Task GetVariableTableByIdAsync(int id); Task> GetAllVariableTablesAsync(); Task CreateVariableTableAsync(CreateVariableTableWithMenuDto createDto); Task UpdateVariableTableAsync(VariableTableDto variableTableDto); Task DeleteVariableTableAsync(int id); } }