Inital branch of Bengali Development

This commit is contained in:
unknown
2011-12-05 14:53:02 +05:30
parent 232a62f8ca
commit e2db77ea70
57 changed files with 1721 additions and 1580 deletions

View File

@ -22,20 +22,16 @@ namespace Tanshu.Accounts.Contracts
bool GetSaleVoucher(Guid voucherID, ref SaleVoucherBO voucherSale, ref List<InventoryDisplayBO> iList);
[OperationContract]
List<PendingBillsBO> GetPendingBills(PendingType list);
List<PendingBillsBO> GetPendingBills(PendingType list, int floor);
[OperationContract]
Guid? GetPendingVoucherID(string tableID);
Guid? GetPendingVoucherID(string tableID, int floor);
[OperationContract]
List<InventoryBO> SaleInventory(Dictionary<BillItemKey, SalesBillItemBO>.ValueCollection list, Guid? voucherID);
[OperationContract]
void GetComplexBillInformation(Guid voucherID, Guid complexProductID, ref decimal rate, ref decimal quantity, ref string name);
[OperationContract]
void SetAlarm(Guid voucherID, DateTime? alarmTime);
[OperationContract]
void VoidBill(Guid voucherID, string reason);
[OperationContract]
void DeclareBillsPaid(Guid userID, List<Guid> billList, bool creditCard);
[OperationContract]
void ToggleImportant(Guid voucherID);
void DeclareBillsPaid(Guid userID, List<Guid> billList, PaidStatus paidStatus);
}
}