示例#1
0
 public UserProfileService(IProfileSettingsService profileSettingsService, IUserProfileProvider userProfileProvider, IUpdateContactFacetsService updateContactFacetsService, IAccountTrackerService accountTrackerService)
 {
     this.profileSettingsService     = profileSettingsService;
     this.userProfileProvider        = userProfileProvider;
     this.updateContactFacetsService = updateContactFacetsService;
     this.accountTrackerService      = accountTrackerService;
 }
示例#2
0
 public TrackSignedIn(IAccountTrackerService accountTrackerService, IUpdateContactFacetsService updateContactFacetsService, FederatedAuthenticationConfiguration federatedAuthenticationConfiguration)
 {
     this.AccountTrackerService                = accountTrackerService;
     this.UpdateContactFacetsService           = updateContactFacetsService;
     this.FederatedAuthenticationConfiguration = federatedAuthenticationConfiguration;
 }
 public TrackRegistered(IAccountTrackerService accountTrackerService, IUpdateContactFacetsService updateContactFacetsService)
 {
     _accountTrackerService      = accountTrackerService;
     _updateContactFacetsService = updateContactFacetsService;
 }