public AuthoriserBase(IRawGet <T, TKeyType> rawGet, IAuthenticationService authenticationService)
 {
     this.rawGet = rawGet;
     this.authenticationService = authenticationService;
 }
 public AllowAllAuthoriser(IRawGet <T, TKeyType> rawGet) : base(rawGet, new DummyAuthenticationService())
 {
 }