aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/IRemoteSqlProvider.cs
blob: d3b6660bf5ad3339c13d5b66b217775060d32a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Shared.SQL;

namespace Tango.FSE.Common.SQL
{
    public interface IRemoteSqlProvider
    {
        Task<RemoteSqlCommandResult> ExecuteSqlCommandAsync(RemoteSqlCommand command);

        RemoteSqlCommandResult ExecuteSqlCommand(RemoteSqlCommand command);
    }
}