Example #1
0
        public LoadCommonResponse RetrieveANMByCHC(int id)
        {
            _logger.LogInformation($"Invoking endpoint: {this.HttpContext.Request.GetDisplayUrl()}");
            _logger.LogDebug($"Fetch anm by chc - {JsonConvert.SerializeObject(id)}");
            try
            {
                var data = _webMasterService.RetrieveANMByCHC(id);

                _logger.LogInformation($"Received anm user 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 anm user data {e.StackTrace}");
                return(new LoadCommonResponse {
                    Status = "false", Message = e.Message, data = null
                });
            }
        }