June 2017
Beginner to intermediate
336 pages
8h 44m
English
Now, we will create the connector like the Azure Bridge that we created during previous chapter exercise, which fetches the data from the services and map it with the Product Data Model, we just defined.
At a very first step, we will make this class as Singleton to use only one instance of it. You can achieve this by just inheriting the class from Singleton class, by passing the same class type as parameter.
public class APIConnector : Singleton<APIConnector>{ void Start () { } void Update () { }}
Read now
Unlock full access