Exemplo n.º 1
0
        public IHttpActionResult SearchStagedTransactions([FromBody] SearchStagedTransactionsRequest req)
        {
            // Create request view model
            req.MgiSessionType = SessionType.BP;

            var sendStagedListRespVm = _commonBusiness.SearchStagedTransactions(req);

            return(Ok(sendStagedListRespVm));
        }