correct the service class name

Change-Id: Icf5431fd0f095c9532bdbaab23de62b184d16a86
diff --git a/xos/tosca/resources/VPGWCComponent.py b/xos/tosca/resources/VPGWCComponent.py
index cbea988..e4eefa0 100644
--- a/xos/tosca/resources/VPGWCComponent.py
+++ b/xos/tosca/resources/VPGWCComponent.py
@@ -6,7 +6,7 @@
 from translator.toscalib.tosca_template import ToscaTemplate
 import pdb
 
-from services.vpgwc.models import VPGWCComponent, MCORDService
+from services.vpgwc.models import VPGWCComponent, VPGWCService
 
 from xosresource import XOSResource
 
@@ -21,7 +21,7 @@
 
         provider_name = self.get_requirement("tosca.relationships.MemberOfService", throw_exception=throw_exception)
         if provider_name:
-            args["provider_service"] = self.get_xos_object(MCORDService, throw_exception=throw_exception, name=provider_name)
+            args["provider_service"] = self.get_xos_object(VPGWCService, throw_exception=throw_exception, name=provider_name)
 
         return args