public QuestionContainer(ThreeSixtyDegreesDomainServiceLayer.Web.Question questionInput)
 {
     this.Question = questionInput;
 }
 public QuestionForQuestionLevelContainer(ThreeSixtyDegreesDomainServiceLayer.Web.Question question, bool isNotInQuestionnaire)
     : this(question)
 {
     this.IsNotInQuestionnaire = isNotInQuestionnaire;
 }
 public ClientDataLanguageContainer(bool IsChecked, ThreeSixtyDegreesDomainServiceLayer.Web.ClientProfileDataLanguage ClientProfileDataLanguage)
 {
     this.IsChecked = IsChecked;
     this.ClientProfileDataLanguage = ClientProfileDataLanguage;
 }
 public QuestionForQuestionLevelContainer(ThreeSixtyDegreesDomainServiceLayer.Web.Question question)
     : this()
 {
     this.Question = question;
 }
 public AssessmentBatchContainer(ThreeSixtyDegreesDomainServiceLayer.Web.AssessmentBatch selected)
 {
     this.AssessmentBatch = selected;
     this.Assessors = new ObservableCollection<AssessorContainer>();
     this.Assessors.CollectionChanged += new NotifyCollectionChangedEventHandler(Assessors_CollectionChanged);
 }