Skip to content

Instantly share code, notes, and snippets.

@shanmugasanthosh7
Created May 12, 2018 18:45
Show Gist options
  • Save shanmugasanthosh7/f267c00a6453f3e4744be9fa9b0a8c51 to your computer and use it in GitHub Desktop.
Save shanmugasanthosh7/f267c00a6453f3e4744be9fa9b0a8c51 to your computer and use it in GitHub Desktop.
RestService Class implementaion
public static class NetworkService
{
public static IApiService apiService;
string static baseUrl = "https://jsonplaceholder.typicode.com"
public static IApiService GetApiService()
{
apiService = RestService.For<IApiService>(baseUrl);
return apiService;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment