00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 using System;
00013
00014 namespace Mcs.Epm.MicrosoftProject.mpFx
00015 {
00016
00017
00018
00019 public class Views
00020 {
00021 #region Static Methods
00022
00023 #endregion
00024
00025 #region Instance Data
00026
00027
00028 #endregion
00029
00030 #region Constructor
00031
00032
00033
00034
00035
00036 public Views(ProjectServer parent)
00037 {
00038 if (parent == null)
00039 {
00040 throw new ArgumentNullException( );
00041 }
00042
00043 Parent = parent;
00044 }
00045
00046 #endregion
00047
00048 #region Public Properties
00049
00050 #endregion
00051
00052 #region Internal Properties
00053
00054 protected internal ProjectServer Parent { get; private set; }
00055
00056 #endregion
00057
00058 #region Public Methods
00059
00060 #endregion
00061
00062 #region Private Methods
00063
00064 #endregion
00065
00066 #region Public Indexers
00067
00068 #endregion
00069
00070 #region Private Methods
00071
00072 #endregion
00073 }
00074 }
00075
00076
00077
00078
00079