using Edge.Core.Database.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Applications.FDC { public interface IFdcResourceArbitrator { Task TryReserveFuelPointAsync(int posId, int fuelPointId); Task TryUnreserveFuelPointAsync(int posId, int fuelPointId); Task TryLockFuelSaleTrxAsync(int posId, int fuelPointId, int transactionNo, int releaseToken); Task TryUnlockFuelSaleTrxAsync(int posId, int fuelPointId, int transactionNo, int releaseToken); } }