mirror of
https://dev.azure.com/tstanciu94/Packages/_git/Netmash
synced 2025-06-21 19:22:38 +03:00
10 lines
195 B
C#
10 lines
195 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace NDB.Infrastructure.DatabaseMigration.Repositories
|
|
{
|
|
public interface IMigrationRepository
|
|
{
|
|
Task ExecuteSqlRaw(string sqlRaw);
|
|
}
|
|
}
|