public PartialViewResult SearchAgentOutstandingOtherInvoice(int AgentId)
        {
            List <OtherInvoiceList> lstObj = new OtherInvoiceDA().GetAgentOutstandingOtherInvoiceList(AgentId);

            return(PartialView("OtherInvoice/OtherInvoiceList", lstObj));
        }
Exemplo n.º 2
0
        public ActionResult InvoiceTypes()
        {
            List <OtherInvocieTypeList> lstObj = new OtherInvoiceDA().GetOtheInvoiceTypeList();

            return(View(lstObj));
        }