using System; using System.Collections.Generic; using Tanshu.Accounts.Contracts; namespace Tanshu.Accounts.DAOFactory { public interface ICheckoutDAO :IDisposable { decimal GetPending(ref string info); decimal GetCreditCard(ref string info); decimal GetVoids(ref string info); decimal GetOpenings(); decimal GetReceipts(); decimal GetPayments(); decimal GetAdditionalVoids(); decimal GetRetainedOvernight(); decimal GetAdvancesReceived(); decimal GetAdvancesAdjusted(); string GetPaymentString(); string GetActiveCashiers(); decimal GetNetSales(); decimal GetDiscountsBills(ref string info); decimal GetOldPending(); decimal GetOldReceipts(); decimal GetOldVoided(); } }