示例#1
0
        public List <Invoice> DisplayInvoiceBLL()
        {
            InvoiceDAL invoiceOperations = new InvoiceDAL();

            try
            {
                iList = invoiceOperations.DisplayInvoiceDAL();
                if (iList.Count <= 0)
                {
                    throw new InvoiceException("No Records Found!!!");
                }
            }
            catch (InvoiceException i)
            {
                throw i;
            }
            return(iList);
        }