using System.Collections.Generic; using System.Threading.Tasks; using DMS.Core.Models; using DMS.Infrastructure.Entities; namespace DMS.Infrastructure.Interfaces { public interface IVarTableRepository { Task AddAsync(DbVariableTable varTable); Task UpdateAsync(DbVariableTable variableTable); Task DeleteAsync(DbVariableTable variableTable); Task> GetAllAsync(); Task GetByIdAsync(int id); } }