namespace TaxBaik.Application.Services; public sealed class NoopInquiryNotificationService : IInquiryNotificationService { public Task NotifyCreatedAsync(int inquiryId, string name, string phone, string serviceType, string message, string? ipAddress, DateTime createdAtUtc, CancellationToken ct = default) => Task.CompletedTask; public Task NotifyStatusChangedAsync(int inquiryId, string name, string phone, string serviceType, string previousStatus, string newStatus, string? changedBy = null, CancellationToken ct = default) => Task.CompletedTask; }