8 lines
467 B
C#
8 lines
467 B
C#
namespace TaxBaik.Application.Services;
|
|
|
|
public interface IInquiryNotificationService
|
|
{
|
|
Task NotifyCreatedAsync(int inquiryId, string name, string phone, string serviceType, string message, string? ipAddress, DateTime createdAtUtc, CancellationToken ct = default);
|
|
Task NotifyStatusChangedAsync(int inquiryId, string name, string phone, string serviceType, string previousStatus, string newStatus, string? changedBy = null, CancellationToken ct = default);
|
|
}
|