Ejemplo n.º 1
0
 public ContentService(IdentityService identityService, IRepository repository)
 {
     this.identityService = identityService;
     this.repository      = repository;
 }
Ejemplo n.º 2
0
 public SocialService(IRepository repository, IdentityService identityService)
 {
     this.repository      = repository;
     this.identityService = identityService;
 }
Ejemplo n.º 3
0
 public AuthenticationService(IRepository repository, ICryptographyProvider cryptographyProvider, IdentityService identityService)
 {
     this.repository           = repository;
     this.cryptographyProvider = cryptographyProvider;
     this.identityService      = identityService;
 }