Inital branch of Bengali Development
This commit is contained in:
@ -4,9 +4,10 @@ using Tanshu.Accounts.Contracts;
|
||||
|
||||
namespace Tanshu.Accounts.DAOFactory
|
||||
{
|
||||
public interface IAdvanceDAO :IDisposable
|
||||
public interface IAdvanceDAO : IDisposable
|
||||
{
|
||||
void Insert(AdvanceBO advance);
|
||||
AdvanceBO Get(Guid advanceID);
|
||||
List<AdvanceDisplayBO> GetAdvances(DateTime fromDate, DateTime toDate, bool all);
|
||||
void Adjust(Guid advanceID, Guid userID);
|
||||
|
||||
|
||||
@ -6,9 +6,7 @@ namespace Tanshu.Accounts.DAOFactory
|
||||
{
|
||||
public interface ICheckoutDAO :IDisposable
|
||||
{
|
||||
decimal GetPending(ref string info);
|
||||
decimal GetCreditCard(ref string info);
|
||||
decimal GetVoids(ref string info);
|
||||
decimal GetDetail(ref string info, PaidStatus paidStatus, string infoLine);
|
||||
decimal GetOpenings();
|
||||
decimal GetReceipts();
|
||||
decimal GetPayments();
|
||||
|
||||
@ -10,13 +10,12 @@ namespace Tanshu.Accounts.DAOFactory
|
||||
decimal GetProductDiscountLimit(Guid productID);
|
||||
bool IsBillPrinted(Guid voucherID);
|
||||
|
||||
List<PendingBillsBO> GetPendingBills(PendingType list);
|
||||
Nullable<Guid> GetPendingVoucherID(string tableID);
|
||||
List<PendingBillsBO> GetPendingBills(PendingType list, int floor);
|
||||
Nullable<Guid> GetPendingVoucherID(string tableID, int floor);
|
||||
List<InventoryBO> SaleInventory(Dictionary<BillItemKey, SalesBillItemBO>.ValueCollection list, Guid? voucherID);
|
||||
void GetComplexBillInformation(Guid voucherID, Guid complexProductID, ref decimal rate, ref decimal quantity, ref string name);
|
||||
|
||||
void DeclareBillsPaid(Guid userID, List<Guid> billList, bool creditCard);
|
||||
void DeclareBillsPaid(Guid userID, List<Guid> billList, PaidStatus paidStatus);
|
||||
|
||||
void ToggleImportant(Guid voucherID);
|
||||
decimal Amount(Guid voucherID);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user