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

21 lines
489 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Data.SqlClient;
namespace Tanshu.Accounts.Contracts
{
[ServiceContract]
public interface IPaymentBI
{
[OperationContract]
void Insert(PaymentBO payment);
[OperationContract]
List<PaymentDisplayBO> GetPayments(Guid? userID, DateTime fromDate, DateTime toDate);
[OperationContract]
void Delete(Guid paymentID);
}
}