Esempio n. 1
0
        public IActionResult AmendmentQuote(string QRFID)
        {
            try
            {
                AmendmentQuoteReq request = new AmendmentQuoteReq();
                request.QRFID         = QRFID;
                request.EditUser      = ckUserEmailId;
                request.VoyagerUserId = ckLoginUser_Id;

                AgentApprovalProviders agentApprovalProviders = new AgentApprovalProviders(_configuration);

                CommonResponse objResponse = agentApprovalProviders.AmendmentQuote(request, token).Result;

                return(Json(objResponse));
            }
            catch (System.Exception ex)
            {
                throw;
            }
        }
Esempio n. 2
0
 public AgentApprovalMapping(IConfiguration configuration)
 {
     _configuration         = configuration;
     cOCommonLibrary        = new COCommonLibrary(configuration);
     agentApprovalProviders = new AgentApprovalProviders(_configuration);
 }