public LineEventMessageHandler(
     HandleRepository handleRepository,
     CryptographyService cryptographyService,
     IHttpClientFactory httpClientFactory)
 {
     this.handleRepository    = handleRepository;
     this.cryptographyService = cryptographyService;
     this.httpClientFactory   = httpClientFactory;
 }
 public HandleRepositoryTest()
 {
     this.handleRepository = new HandleRepository(this.mongoDBOptions);
 }