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

10 lines
195 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
{
2022-01-22 01:54:19 +02:00
Task ExecuteSqlRaw(string sqlRaw);
2022-01-21 11:19:51 +02:00
}
}