SQL maanager, Module Creator, module settings enhancements
This commit is contained in:
11
Oqtane.Server/Repository/Interfaces/ISqlRepository.cs
Normal file
11
Oqtane.Server/Repository/Interfaces/ISqlRepository.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Data.SqlClient;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface ISqlRepository
|
||||
{
|
||||
int ExecuteNonQuery(Tenant tenant, string query);
|
||||
SqlDataReader ExecuteReader(Tenant tenant, string query);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user