Inheritance: IShopifyObject
        private ConnectsterController()
        {
            _database = new ConnectsterDatabase();
            _shopsterComm = ShopsterCommunicator.Instance();
            _shopifyComm = ShopifyCommunicator.Instance();

            //Todo: Change these namespaces, keys, valuetype into a config file entry.
            _metaFieldShopsterProductId = new ShopifyMetafield
                                              {
                                                  Namespace = "Connectster",
                                                  Key = "ShopsterProductId",
                                                  ValueType = "integer"
                                              };
        }
 static ShopifyCommunicator()
 {
     _instance = new ShopifyCommunicator();
 }