sozsoft-platform/api/src/Sozsoft.Platform.Domain/Data/IAfterAllMigrationsSqlExecutor.cs
2026-08-21 22:27:59 +03:00

16 lines
559 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Threading.Tasks;
namespace Sozsoft.Platform.Data;
/// <summary>
/// Tüm migration ve seed işlemleri tamamlandıktan sonra çalıştırılacak SQL adımlarını yürütür.
/// Uygulaması DbMigrator projesindedir; migrator dışındaki host'larda kayıtlı olmayabilir.
/// </summary>
public interface IAfterAllMigrationsSqlExecutor
{
/// <param name="tenantId">
/// null ise HostData/ExecuteData, aksi halde TenantData/ExecuteData klasörü işlenir.
/// </param>
Task ExecuteAsync(Guid? tenantId = null);
}