narsil/Tanshu.Accounts.Contracts/DAOFactory/ManagementDAO.cs
unknown ca7a198616 Open Bill by BillID
Fixed discount bill in Checkout
Fixed Management module (maybe)
2012-04-07 01:37:58 +05:30

20 lines
504 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);
decimal Update(Guid voucherID, decimal tax);
List<PendingBillsBO> GetPaidBills();
void Reorder(ShowProgessDelegate showProgressDelegate);
bool MergeData(string sourceDB, string targetDB);
}
}