using CAPI.Custom.Services.Events.Quotes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CAPI.Custom.Services.EventHandlers.Quotes { public class QuoteAcceptedHandler : IHandler { InventoryService inventoryService = new InventoryService(); public void Handle(QuoteAcceptedEvent domainEvent) { inventoryService.InventoryAutomationUpdate(domainEvent.QuoteId, framework_business.pNums.InventoryAutomationType.Quote_Accepted); } } }