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