15 lines
348 B
C#
15 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
{
|
|
public interface IVoucherDAO : IDisposable
|
|
{
|
|
bool Insert(VoucherBO voucher);
|
|
VoucherBO GetVoucher(Guid voucherID);
|
|
bool Delete(Guid voucherID);
|
|
bool Update(VoucherBO voucher);
|
|
}
|
|
}
|