public async Task <IList <UzClientTypeDto> > GetUzClientType() { var location = GetControllerActionNames(); IList <UzClientTypeDto> resultData = null; try { resultData = await _npRepo.GetUzClientType(); } catch (Exception e) { _logger.LogWarn($"{location}: {e.Message} - {e.InnerException}"); } return(resultData); }