-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathBaseContext.cs
39 lines (30 loc) · 1.25 KB
/
BaseContext.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Text;
using Common.Config;
namespace Common
{
public abstract class BaseContext : IContext
{
public BaseContext(ConfigJson configJson)
{
this.Config = configJson;
this.SourceClient = ClientHelpers.CreateClient(configJson.SourceConnection);
this.TargetClient = ClientHelpers.CreateClient(configJson.TargetConnection);
}
/// <summary>
/// Constructor for test purposes
/// </summary>
public BaseContext()
{
}
public ConfigJson Config { get; }
public WorkItemClientConnection SourceClient { get; }
public WorkItemClientConnection TargetClient { get; }
public ConcurrentDictionary<int, string> WorkItemIdsUris { get; set; }
public ConcurrentBag<WorkItemMigrationState> WorkItemsMigrationState { get; set; } = new ConcurrentBag<WorkItemMigrationState>();
public ConcurrentDictionary<int, int> SourceToTargetIds { get; set; } = new ConcurrentDictionary<int, int>();
public ConcurrentSet<string> RemoteLinkRelationTypes { get; set; } = new ConcurrentSet<string>(StringComparer.OrdinalIgnoreCase);
}
}