Ejemplo n.º 1
0
 protected override void OnParametersSet()
 {
     if (Id != null)
     {
         _sectionId = Guid.Parse(Id);
         survey     = SurveyClient.CachedSurvey;
         section    = survey.Sections.FirstOrDefault(n => n.SectionId == _sectionId);
     }
 }
Ejemplo n.º 2
0
 protected override void OnParametersSet()
 {
     Console.WriteLine("OnParametersSet #1");
     if (SectionId != null)
     {
         _sectionId = Guid.Parse(SectionId);
         survey     = SurveyClient.CachedSurvey;
         section    = survey.Sections.FirstOrDefault(n => n.SectionId == _sectionId);
     }
 }