コード例 #1
0
        public async Task <ActionResult> GetAllAsync(string offerName, string planName)
        {
            AADAuthHelper.VerifyUserAccess(this.HttpContext, _logger, true);

            _logger.LogInformation($"Get all custom meters dimensions from offer {offerName} and plan {planName}.");
            return(Ok(await _customMeterDimensionService.GetAllAsync(offerName, planName)));
        }
コード例 #2
0
 public async Task <ActionResult> GetAllAsync(string offerName, string planName)
 {
     return(Ok(await _customMeterDimensionService.GetAllAsync(offerName, planName)));
 }