Files
DMS/DMS.Infrastructure/Interfaces/IVarTableRepository.cs

17 lines
513 B
C#
Raw Normal View History

2025-07-19 09:25:01 +08:00
using System.Collections.Generic;
using System.Threading.Tasks;
using DMS.Core.Models;
2025-07-19 19:55:42 +08:00
using DMS.Infrastructure.Entities;
2025-07-19 09:25:01 +08:00
2025-07-19 11:11:01 +08:00
namespace DMS.Infrastructure.Interfaces
2025-07-19 09:25:01 +08:00
{
public interface IVarTableRepository
{
2025-07-19 19:55:42 +08:00
Task<DbVariableTable> AddAsync(DbVariableTable varTable);
Task<int> UpdateAsync(DbVariableTable variableTable);
Task<int> DeleteAsync(DbVariableTable variableTable);
Task<List<DbVariableTable>> GetAllAsync();
Task<DbVariableTable> GetByIdAsync(int id);
2025-07-19 09:25:01 +08:00
}
}