コード例 #1
0
ファイル: ContentService.cs プロジェクト: CeSiumUA/Doppler
 public ContentService(IdentityService identityService, IRepository repository)
 {
     this.identityService = identityService;
     this.repository      = repository;
 }
コード例 #2
0
 public SocialService(IRepository repository, IdentityService identityService)
 {
     this.repository      = repository;
     this.identityService = identityService;
 }
コード例 #3
0
 public AuthenticationService(IRepository repository, ICryptographyProvider cryptographyProvider, IdentityService identityService)
 {
     this.repository           = repository;
     this.cryptographyProvider = cryptographyProvider;
     this.identityService      = identityService;
 }