17 lines
433 B
C#
17 lines
433 B
C#
using System.Collections.ObjectModel;
|
|
using DMS.Application.DTOs;
|
|
using DMS.Core.Models;
|
|
using DMS.WPF.ItemViewModel;
|
|
|
|
namespace DMS.WPF.Interfaces;
|
|
|
|
public interface IVariableTableViewService
|
|
{
|
|
|
|
void LoadAllVariableTables();
|
|
|
|
Task<bool> AddAsync(VariableTableItem variableTable );
|
|
|
|
Task<bool> UpdateAsync(VariableTableItem variableTable);
|
|
Task<bool> DeleteAsync(VariableTableItem variableTable);
|
|
} |