2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
|
|
|
{
|
|
|
|
|
public interface IManagementDAO : IDisposable
|
|
|
|
|
{
|
|
|
|
|
decimal GetBalance(decimal? tax);
|
2012-04-06 20:07:58 +00:00
|
|
|
|
List<Guid> GetUpdateBillList(decimal tax);
|
2010-03-02 17:56:21 +00:00
|
|
|
|
decimal Update(Guid voucherID, decimal tax);
|
|
|
|
|
|
|
|
|
|
List<PendingBillsBO> GetPaidBills();
|
|
|
|
|
|
|
|
|
|
void Reorder(ShowProgessDelegate showProgressDelegate);
|
|
|
|
|
|
|
|
|
|
bool MergeData(string sourceDB, string targetDB);
|
|
|
|
|
}
|
|
|
|
|
}
|