public CertifiedUsersController(ICertificationRespository repo, IGetCurrentUserIdentity getCurrentUserIdentityService) : base(repo)
 {
     _identityService = getCurrentUserIdentityService;
 }
Exemplo n.º 2
0
 public TokenController(ICertificationRespository repo) : base(repo)
 {
 }
Exemplo n.º 3
0
 public BaseApiController(ICertificationRespository repo)
 {
     _repo = repo;
 }