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

16 lines
453 B
C#

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);
}
}