// コンストラクタ

		/// <summary>
		/// ジャンル表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public DiaryIndexViewGenre(DiaryIndex model, AbsPath path, string word) : base(model, path){
			myWord = word;
			if(string.IsNullOrEmpty(word)){
				myPath = BasePath.Combine(Id);
			} else {
				myPath = BasePath.Combine(Id, word);
			}
		}
// コンストラクタ

		/// <summary>
		/// 最近の日記表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public DiaryIndexViewAmazon(DiaryIndex model, AbsPath path) : base(model, path){
			myPath = myModel.BasePath.Combine(Id);
		}
// コンストラクタ

		/// <summary>
		/// 最近の日記表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public DiaryIndexViewRecently(DiaryIndex model, AbsPath path) : base(model, path){
			myPath = myModel.BasePath;
		}
// コンストラクタ

		/// <summary>
		/// 最近の日記表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public DiaryIndexViewBackNumber(DiaryIndex model, AbsPath path) : base(model, path){
			myPath = myModel.BasePath.Combine(Id);
		}
// コンストラクタ

		/// <summary>
		/// ジャンル表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public DiaryIndexViewGenreList(DiaryIndex model, AbsPath path) : base(model, path){
			myPath = BasePath.Combine(Id);
		}
// コンストラクタ

		/// <summary>
		/// 日記の見出し一覧表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public DiaryIndexUpdatedAtom(DiaryIndex model, AbsPath path) : base(model, path){
			myPath = myModel.BasePath.Combine(DiaryIndexViewUpdated.Id, Id);
		}