| 60 | } |
| 61 | |
| 62 | FuelType UtilityBill_Impl::fuelType() const { |
| 63 | boost::optional<std::string> value = getString(OS_UtilityBillFields::FuelType, true); |
| 64 | OS_ASSERT(value); |
| 65 | return FuelType(value.get()); |
| 66 | } |
| 67 | |
| 68 | InstallLocationType UtilityBill_Impl::meterInstallLocation() const { |
| 69 | boost::optional<std::string> value = getString(OS_UtilityBillFields::MeterInstallLocation, true); |
no test coverage detected