Inheritance: ConfluenceClient
Example #1
0
		public PageBuilder(CachedConfluenceClient confluence, TfsClient tfs, BuildOwners owners)
		{
			if (confluence == null)
				throw new ArgumentNullException(nameof(confluence));

			if (tfs == null)
				throw new ArgumentNullException(nameof(tfs));

			if (owners == null)
				throw new ArgumentNullException(nameof(owners));

			m_confluence = confluence;
			m_tfs = tfs;
			m_owners = owners;
		}