narsil/Tanshu.Accounts.Contracts/DAOFactory/SaleVoucherDAO.cs
unknown ca7a198616 Open Bill by BillID
Fixed discount bill in Checkout
Fixed Management module (maybe)
2012-04-07 01:37:58 +05:30

17 lines
506 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);
SaleVoucherBO GetVoucherSale(string billID);
}
}