using PowderCoating.Application.DTOs.Quote; using PowderCoating.Core.Entities; namespace PowderCoating.Application.Interfaces; public interface IQuotePricingAssemblyService { void ApplyPricingSnapshot(Quote quote, QuotePricingResult pricingResult); Task> CreateQuoteItemsAsync( IEnumerable itemDtos, int quoteId, int companyId, decimal? ovenRateOverride, DateTime createdAtUtc); }