20 lines
545 B
C#
20 lines
545 B
C#
using System;
|
|
using Tanshu.Accounts.Contracts;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
{
|
|
public interface IManagementDAO : IDisposable
|
|
{
|
|
decimal GetBalance(decimal? tax);
|
|
List<Guid> GetUpdateBillList(decimal tax, bool voided, bool paid, bool creditCard);
|
|
decimal Update(Guid voucherID, decimal tax);
|
|
|
|
List<PendingBillsBO> GetPaidBills();
|
|
|
|
void Reorder(ShowProgessDelegate showProgressDelegate);
|
|
|
|
bool MergeData(string sourceDB, string targetDB);
|
|
}
|
|
}
|