using Oqtane.Models;
using System.Threading.Tasks;
namespace Oqtane.Services
{
///
/// Service to execute a against the backend database
///
public interface ISqlService
{
///
/// Executes a sql query and returns its result
///
///
///
Task ExecuteQueryAsync(SqlQuery sqlquery);
}
}