public GithubEventResultService(IGithubEventResultRepository repository, IApplicationRepository appRepository)
 {
     this.repository    = repository;
     this.appRepository = appRepository;
 }
 public GitHubWebHookService(IGithubEventResultRepository repository, IApplicationRepository appRepository)
 {
     this.repository    = repository;
     this.appRepository = appRepository;
     longTask           = Task.Factory.StartNew(ExecutePersistencyEvent, TaskCreationOptions.LongRunning);
 }