Example #1
0
    public List <CustomersUnpaidInvoicesEntity> GetCustomersList(string statementDate)
    {
        ICustomersUnPaidInvoicesBL sDAL = new CustomersUnPaidInvoicesBL();

        return(sDAL.GetCustomersList(statementDate));
    }
Example #2
0
    public CustomersStatementEntity GetPrintUnpaidSalesInvoice(int supplierID, string statementDate)
    {
        ICustomersUnPaidInvoicesBL sDAL = new CustomersUnPaidInvoicesBL();

        return(sDAL.GetPrintUnpaidSalesInvoice(supplierID, statementDate));
    }