public AlwaysOnConfigurationConsumer(IHandleFetchingApiPushConfiguration fetchApiPush, IHandleExecutingApiConfiguration execute, IHandleFetchingApiPullConfiguration fetchApiPull)
 {
     _fetchApiPush = fetchApiPush;
     _fetchApiPull = fetchApiPull;
     _execute = execute;
     _log = LogManager.GetLogger(GetType());
 }
 public PullJob(IHandleFetchingApiPullConfiguration fetch, IHandleExecutingApiConfiguration execute)
 {
     _fetch = fetch;
     _execute = execute;
 }
 public PullJob(IHandleFetchingApiPullConfiguration fetch, IHandleExecutingApiConfiguration execute)
 {
     _log = LogManager.GetLogger(GetType());
     _fetch = fetch;
     _execute = execute;
 }