示例#1
0
 public CreateQuestionCommandWheel(ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, ICollection <Reply> reply)
 {
     this.TypeReply    = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation  = enunciation;
     this.Reply        = reply;
 }
 public CreateQuestionCommandWheel(ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, ICollection<Reply> reply)
 {
     this.TypeReply = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation = enunciation;
     this.Reply = reply;
 }
 public CreateQuestionQuestionnaireCommand(ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, ICollection<Reply> reply, string group)
 {
     this.TypeReply = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation = enunciation;
     this.Reply = reply;
     this.Group = group;
 }
示例#4
0
 public CreateQuestionQuestionnaireCommand(ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, ICollection <Reply> reply, string group)
 {
     this.TypeReply    = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation  = enunciation;
     this.Reply        = reply;
     this.Group        = group;
 }
 public UpdateQuestionCommandWheel(Guid id, ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, List<Reply> reply)
 {
     this.Id = id;
     this.TypeReply = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation = enunciation;
     this.Reply = reply;
 }
 public UpdateQuestionCommandWheel(Guid id, ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, List <Reply> reply)
 {
     this.Id           = id;
     this.TypeReply    = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation  = enunciation;
     this.Reply        = reply;
 }
示例#7
0
 public CreateQuestionCommandScript(ETypeReply typeReply, ETypeQuestion typeQuestion, int stepQuestion, string enunciation, string education, ICollection <Reply> reply)
 {
     this.TypeReply    = typeReply;
     this.TypeQuestion = typeQuestion;
     this.StepQuestion = stepQuestion;
     this.Enunciation  = enunciation;
     this.Reply        = reply;
 }
 public CreateQuestionCommandScript(ETypeReply typeReply, ETypeQuestion typeQuestion, int stepQuestion, string enunciation, string education, ICollection<Reply> reply)
 {
     this.TypeReply = typeReply;
     this.TypeQuestion = typeQuestion;
     this.StepQuestion = stepQuestion;
     this.Enunciation = enunciation;
     this.Reply = reply;
 }
 public UpdateQuestionCommandQuestionnaire(Guid id, ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, ICollection<Reply> reply, string group)
 {
     this.Id = id;
     this.TypeReply = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation = enunciation;
     this.Reply = reply;
     this.Group = group;
 }
 public UpdateQuestionCommandQuestionnaire(Guid id, ETypeReply typeReply, ETypeQuestion typeQuestion, string enunciation, string education, ICollection <Reply> reply, string group)
 {
     this.Id           = id;
     this.TypeReply    = typeReply;
     this.TypeQuestion = typeQuestion;
     this.Enunciation  = enunciation;
     this.Reply        = reply;
     this.Group        = group;
 }
 public UpdateQuestionCommand(Guid id, ETypeReply typeReply, ETypeQuestion typeQuestion, int stepQuestion, string enunciation, string education, ICollection<Reply> reply, int? phaseQuestion)
 {
     this.Id = id;
     this.TypeReply = typeReply;
     this.TypeQuestion = typeQuestion;
     this.StepQuestion = stepQuestion;
     this.Enunciation = enunciation;
     this.PhaseQuestion = phaseQuestion;
     this.Reply = reply;
 }
示例#12
0
 public UpdateQuestionCommand(Guid id, ETypeReply typeReply, ETypeQuestion typeQuestion, int stepQuestion, string enunciation, string education, ICollection <Reply> reply, int?phaseQuestion)
 {
     this.Id            = id;
     this.TypeReply     = typeReply;
     this.TypeQuestion  = typeQuestion;
     this.StepQuestion  = stepQuestion;
     this.Enunciation   = enunciation;
     this.PhaseQuestion = phaseQuestion;
     this.Reply         = reply;
 }
示例#13
0
 public static bool ChangeTypeQuestionScopeIsValid(this Question question, ETypeQuestion typeQuestion)
 {
     return(AssertionConcern.IsSatisfiedBy(
                AssertionConcern.AssertArgumentNotNull(typeQuestion, Errors.TypeIsRequired)
                ));
 }
示例#14
0
 public static bool ChangeTypeQuestionScopeIsValid(this Question question, ETypeQuestion typeQuestion)
 {
     return AssertionConcern.IsSatisfiedBy(
                     AssertionConcern.AssertArgumentNotNull(typeQuestion, Errors.TypeIsRequired)
         );
 }