using Dfs.WayneChina.PosModelMini; using System.Collections.Generic; namespace Dfs.WayneChina.CardTrxManager.Support { public interface ITransaction { PaymentStatus PaymentStatus { get; set; } PosTrx PosTrx { get; set; } PosTrxMop PosTrxMop { get; set; } ClientPosTrx ClientPosTrx { get; set; } TransactionState State { get; set; } List SaleItems { get; set; } } }