public ContentService(IdentityService identityService, IRepository repository) { this.identityService = identityService; this.repository = repository; }
public SocialService(IRepository repository, IdentityService identityService) { this.repository = repository; this.identityService = identityService; }
public AuthenticationService(IRepository repository, ICryptographyProvider cryptographyProvider, IdentityService identityService) { this.repository = repository; this.cryptographyProvider = cryptographyProvider; this.identityService = identityService; }