netmash/infrastructure/NDB.Infrastructure.Database.../Repositories/IMigrationRepository.cs

10 lines
200 B
C#
Raw Normal View History

2022-01-21 11:19:51 +02:00
using System.Threading.Tasks;
namespace NDB.Infrastructure.DatabaseMigration.Repositories
{
public interface IMigrationRepository
{
Task ExecuteSqlRaw(string commandText);
}
}