Engage.Survey.Entities.Survey.PostSaveProcessing C# (CSharp) 메소드

PostSaveProcessing() 공개 메소드

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