Exemple #1
0
 public ClientService(IIdentityClientRepository identityClientRepository, IMapper mapper)
 {
     this.identityClientRepository = identityClientRepository;
     this.mapper = mapper;
 }
Exemple #2
0
 public ResourceStore(IClientRepository clientRepository, IApiClientRepository apiClientRepository, IIdentityClientRepository identityClientRepository)
 {
     this._clientRepository         = clientRepository;
     this._apiClientRepository      = apiClientRepository;
     this._identityClientRepository = identityClientRepository;
 }