public ActionResult <Meter> GetById(string meterId) { Meter meter = meterService.FindById(meterId); if (meter == null) { return(NotFound()); } return(meter); }