Skip to content

Instantly share code, notes, and snippets.

@filipoff2
Last active February 26, 2021 13:40
Show Gist options
  • Save filipoff2/a19e049cf20b43f92262dd686c154b0a to your computer and use it in GitHub Desktop.
Save filipoff2/a19e049cf20b43f92262dd686c154b0a to your computer and use it in GitHub Desktop.
dirty dids
// not clean but it works!!
public AuthorizationService(
IPhotoClient photoClient,
IClientConfiguration configuration,
IMvxNavigationService navigationService,
UserInfo userInfo,
)
{
_photoClient = photoClient;
_configuration = configuration;
_navigationService = navigationService;
_userInfo = userInfo;
// no iOC won't do it, do it by myself
//not clean = problems with "unit" testing
_fingerprint = CrossFingerprint.Current;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment