Ejemplo n.º 1
0
        public LoadCommonResponse RetrieveILRByCHC(int id)
        {
            _logger.LogInformation($"Invoking endpoint: {this.HttpContext.Request.GetDisplayUrl()}");
            _logger.LogDebug($"Fetch  ilr by chc - {JsonConvert.SerializeObject(id)}");
            try
            {
                var data = _webMasterService.RetrieveILRByCHC(id);

                _logger.LogInformation($"Received ilr by chc data {data}");
                return(data.Count == 0 ?
                       new LoadCommonResponse {
                    Status = "true", Message = "No record found", data = new List <LoadCommon>()
                }
                    : new LoadCommonResponse {
                    Status = "true", Message = string.Empty, data = data
                });
            }
            catch (Exception e)
            {
                _logger.LogError($"Error in receiving ilr by chc data {e.StackTrace}");
                return(new LoadCommonResponse {
                    Status = "false", Message = e.Message, data = null
                });
            }
        }