Exemple #1
0
 protected TfsDestination(
     ICoreConfiguration coreConfiguration,
     IGreenshotLanguage greenshotLanguage,
     ITfsConfiguration tfsConfiguration,
     ITfsLanguage tfsLanguage,
     TfsClient tfsClient,
     Func <CancellationTokenSource, Owned <PleaseWaitForm> > pleaseWaitFormFactory,
     IResourceProvider resourceProvider,
     WorkItem workItem) : this(coreConfiguration, greenshotLanguage, tfsConfiguration, tfsLanguage, tfsClient, pleaseWaitFormFactory, resourceProvider)
 {
     _workItem = workItem;
 }
Exemple #2
0
 public TfsDestination(
     ICoreConfiguration coreConfiguration,
     IGreenshotLanguage greenshotLanguage,
     ITfsConfiguration tfsConfiguration,
     ITfsLanguage tfsLanguage,
     TfsClient tfsClient,
     Func <CancellationTokenSource, Owned <PleaseWaitForm> > pleaseWaitFormFactory,
     IResourceProvider resourceProvider) : base(coreConfiguration, greenshotLanguage)
 {
     _tfsConfiguration      = tfsConfiguration;
     _tfsLanguage           = tfsLanguage;
     _tfsClient             = tfsClient;
     _pleaseWaitFormFactory = pleaseWaitFormFactory;
     _resourceProvider      = resourceProvider;
 }