13 lines
355 B
C#
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);
|
|
}
|
|
} |