using System.Threading.Tasks; namespace NDB.Infrastructure.DatabaseMigration.Repositories { public interface IMigrationRepository { Task ExecuteSqlRaw(string commandText); } }