using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Mogafa.App.LogEvents.Intercepts { public interface IPurchaseDataProviderForEventParameter { Task GetCumulativeValue(); Task GetValue(); } }