public RgtVinDataProvider(ICollection<IPointToLaceRequest> request, IExecuteTheDataProviderSource nextSource,
     IExecuteTheDataProviderSource fallbackSource, ISendCommandToBus command)
     : base(nextSource, fallbackSource)
 {
     _request = request;
     _handleServiceCall = new FakeHandleRgtVinServiceCall();
     _externalWebServiceCall = new FakeCallingRgtVinExternalWebService();
     _command = command;
 }
 public ConsumeSource(IHandleDataProviderSourceCall handleDataProviderCall,
     ICallTheDataProviderSource dataProviderCall)
 {
     _handleDataProviderCall = handleDataProviderCall;
     _dataProviderCall = dataProviderCall;
 }