host-bmc: Implement Asset interface

Adding support to host Asset dbus interface.  Based on the Topology data
received from remote PLDM terminus, PLDM hosts the dbus interface.  The
Asset interface is defined at [1].

Tested:
   Functional test passed

[1]: https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/yaml/xyz/openbmc_project/Inventory/Decorator/Asset.interface.yaml

Change-Id: Ia32e69861192fca6db8c1613fbec281ca3faa3e8
Signed-off-by: Archana Kakani <archana.kakani@ibm.com>
diff --git a/host-bmc/dbus/asset.cpp b/host-bmc/dbus/asset.cpp
new file mode 100644
index 0000000..0bf18d3
--- /dev/null
+++ b/host-bmc/dbus/asset.cpp
@@ -0,0 +1,15 @@
+#include "asset.hpp"
+
+namespace pldm
+{
+namespace dbus
+{
+
+std::string Asset::partNumber(std::string value)
+{
+    return sdbusplus::xyz::openbmc_project::Inventory::Decorator::server::
+        Asset::partNumber(value);
+}
+
+} // namespace dbus
+} // namespace pldm