narsil/Tanshu.Accounts.Contracts/DAOFactory/PaymentDAO.cs
2010-03-02 23:26:21 +05:30

13 lines
355 B
C#

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