Пример #1
0
        public ActionResult <Meter> GetById(string meterId)
        {
            Meter meter = meterService.FindById(meterId);

            if (meter == null)
            {
                return(NotFound());
            }
            return(meter);
        }