示例#1
0
        public async Task <ActionResult <List <FundDistribution> > > GetFundDistributionAsync()
        {
            _logger.LogDebug("In PortfolioController:GetFundDistributionAsync");

            List <FundDistribution> fundDistributions = await _portfolioService.GetFundDistributionAsync();

            _logger.LogDebug("Returning from PortfolioController:GetFundDistributionAsync");

            return(Ok(fundDistributions));
        }