2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
|
|
|
{
|
|
|
|
|
public interface ISaleVoucherDAO : IDisposable
|
|
|
|
|
{
|
|
|
|
|
bool Insert(SaleVoucherBO saleVoucher);
|
|
|
|
|
bool Update(SaleVoucherBO saleVoucher);
|
|
|
|
|
void SetAlarm(Guid voucherID, DateTime? alarmTime);
|
|
|
|
|
void VoidBill(Guid voucherID, string reason);
|
|
|
|
|
SaleVoucherBO GetVoucherSale(Guid voucherID);
|
2012-04-06 20:07:58 +00:00
|
|
|
|
SaleVoucherBO GetVoucherSale(string billID);
|
2010-03-02 17:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|