Beispiel #1
0
 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();
 }
Beispiel #2
0
		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 ();
        }
Beispiel #3
0
 public AuthHelper(IAuthPlatformSpecific platformSpecific, MusicClient mixRadioClient)
 {
     this._platformSpecific = platformSpecific;
     this._mixRadioClient   = mixRadioClient;
 }
Beispiel #4
0
 public AuthHelper(IAuthPlatformSpecific platformSpecific, MusicClient mixRadioClient)
 {
     this._platformSpecific = platformSpecific;
     this._mixRadioClient = mixRadioClient;
 }