narsil/Tanshu.Accounts.Contracts/DAOFactory/ManagementDAO.cs

20 lines
545 B
C#
Raw Normal View History

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);
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);
}
}