10 lines
200 B
C#
10 lines
200 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace NDB.Infrastructure.DatabaseMigration.Repositories
|
|||
|
{
|
|||
|
public interface IMigrationRepository
|
|||
|
{
|
|||
|
Task ExecuteSqlRaw(string commandText);
|
|||
|
}
|
|||
|
}
|