SobekCM.Core.Aggregations.Complete_Item_Aggregation.Complete_Item_Aggregation C# (CSharp) Method

Complete_Item_Aggregation() public method

Constructor for a new instance of the Item_Aggregation_Complete class
public Complete_Item_Aggregation ( ) : System
return System
        public Complete_Item_Aggregation()
        {
            // Set some defaults
            Name = String.Empty;
            ShortName = String.Empty;
            Active = true;
            Hidden = false;
            Map_Search_Beta = 0;
            Map_Display_Beta = 0;
            OAI_Enabled = false;
            Has_New_Items = false;
            childPagesHash = new Dictionary<string, Complete_Item_Aggregation_Child_Page>();
            Search_Fields = new List<Complete_Item_Aggregation_Metadata_Type>();
            Browseable_Fields = new List<Complete_Item_Aggregation_Metadata_Type>();
            Facets = new List<short> { 3, 5, 7, 10, 8 };

            // Add the default result views
            Result_Views = new List<Result_Display_Type_Enum>
                              {
                                  Result_Display_Type_Enum.Brief,
                                  Result_Display_Type_Enum.Table,
                                  Result_Display_Type_Enum.Thumbnails,
                                  Result_Display_Type_Enum.Full_Citation
                              };
            Default_Result_View = Result_Display_Type_Enum.Brief;
        }

Same methods

Complete_Item_Aggregation::Complete_Item_Aggregation ( Web_Language_Enum Default_UI_Language ) : System
Complete_Item_Aggregation::Complete_Item_Aggregation ( Web_Language_Enum Default_UI_Language, string Code, string Type, int ID, string Display_Options, System.DateTime Last_Item_Added ) : System