Exemple #1
0
        public async Task <IActionResult> GetMeterReadings(int accountId)
        {
            var result = await _meterService.GetMeterReadingsAsync(new MeterReadingsRequest { AccountId = accountId });

            return(Ok(result.MeterReadings));
        }