oqtane.framework/Oqtane.Client/Services/Interfaces/ISqlService.cs
2020-04-03 17:18:33 -04:00

11 lines
202 B
C#

using System.Threading.Tasks;
using Oqtane.Models;
namespace Oqtane.Services.Interfaces
{
public interface ISqlService
{
Task<SqlQuery> ExecuteQueryAsync(SqlQuery sqlquery);
}
}