Exemplo n.º 1
0
        public ActionResult _PLRView(int ClaimId, int SalesFormMappingId)
        {
            PLRView PLRView = new PLRView();

            try
            {
                PLRView = _BillingService.GetPLRView(ClaimId, SalesFormMappingId);
            }
            catch (Exception ex)
            {
                LoggerService.LogException(ex);
            }

            return(PartialView(PLRView));
        }