using System; using System.Collections.Generic; using Tanshu.Accounts.Contracts; namespace Tanshu.Accounts.DAOFactory { public interface IPaymentDAO : IDisposable { void Insert(PaymentBO payment); List GetPayments(Guid? userID, DateTime fromDate, DateTime toDate); void Delete(Guid paymentID); } }