public ServerReportServerPlugin(IProjectGridAction projectGridAction)
		{
			this.projectGridAction = projectGridAction;
            this.SuccessIndicatorBarLocation = IndicatorBarLocation.Bottom;
		}
		public IResponse Execute(ICruiseRequest request)
		{
            this.projectGridAction.DefaultSortColumn = sortColumn;
            this.projectGridAction.SuccessIndicatorBarLocation = this.SuccessIndicatorBarLocation;
            return projectGridAction.Execute(ACTION_NAME, request.ServerSpecifier, request);
		}
 public IResponse Execute(ICruiseRequest request)
 {
     if (sortColumn.HasValue) projectGridAction.DefaultSortColumn = sortColumn.Value;
     this.projectGridAction.SuccessIndicatorBarLocation = this.SuccessIndicatorBarLocation;
     return projectGridAction.Execute(ACTION_NAME, request);
 }