00001 /* ---------------------------------------------------------------------------- 00002 * Microsoft Corporation 00003 * ---------------------------------------------------------------------------- 00004 * Microsoft Project Server mpFx (mpFx) 00005 * ---------------------------------------------------------------------------- 00006 * Author: Colby Africa 00007 * ---------------------------------------------------------------------------- 00008 * License: http://code.msdn.microsoft.com/mpFx/Project/License.aspx 00009 * ---------------------------------------------------------------------------- 00010 */ 00011 00012 using System; 00013 00014 namespace Mcs.Epm.MicrosoftProject.mpFx 00015 { 00016 /// <summary> 00017 /// Wraps the administration web service 00018 /// </summary> 00019 public class Administration 00020 { 00021 #region Instance Data 00022 00023 #endregion 00024 00025 #region Constructor 00026 00027 /// <summary> 00028 /// Create an instance of Queue 00029 /// </summary> 00030 /// <param name="parent">Parent Object</param> 00031 public Administration(ProjectServer parent) 00032 { 00033 if (parent == null) 00034 { 00035 throw new ArgumentNullException("parent"); 00036 } 00037 00038 Parent = parent; 00039 } 00040 00041 #endregion 00042 00043 #region Public Methods 00044 00045 #endregion 00046 00047 #region Public Properties 00048 00049 public ProjectServer Parent { get; private set; } 00050 00051 #endregion 00052 00053 } 00054 }
1.5.8