public App(IAuthPlatformSpecific platformSpecificAuth, string appVersion, IUriLauncher uriLauncher) { this.MixRadioClient = new MusicClient(ApiKeys.ClientId); this.AuthHelper = new AuthHelper(platformSpecificAuth, this.MixRadioClient); this.ActivityViewModel = new ActivityViewModel(this.MixRadioClient, this.AuthHelper); this.AppVersion = appVersion; this.UriLauncher = uriLauncher; this.MainPage = new RootPage(); }
public App(IAuthPlatformSpecific platformSpecificAuth, string appVersion, IUriLauncher uriLauncher) { this.MixRadioClient = new MusicClient (ApiKeys.ClientId); this.AuthHelper = new AuthHelper (platformSpecificAuth, this.MixRadioClient); this.ActivityViewModel = new ActivityViewModel (this.MixRadioClient, this.AuthHelper); this.AppVersion = appVersion; this.UriLauncher = uriLauncher; this.MainPage = new RootPage (); }
public AuthHelper(IAuthPlatformSpecific platformSpecific, MusicClient mixRadioClient) { this._platformSpecific = platformSpecific; this._mixRadioClient = mixRadioClient; }