Engage.Survey.Entities.Survey.PostSaveProcessing C# (CSharp) Method

PostSaveProcessing() public method

Posts the save processing.
public PostSaveProcessing ( WebControl control ) : void
control WebControl The control.
return void
        public virtual void PostSaveProcessing(WebControl control)
        {
            List<ISection> sections = this.GetSections();
            foreach (ISection s in sections)
            {
                s.PostSaveProcessing(control);
            }
        }