public SweetQuestionsCollection(SweetMutusDocument document) : this()
 {
     this._document = document;
 }
Exemplo n.º 2
0
 protected SweetQuestionsCache(SweetMutusDocument document, IEnumerable <SweetQuestion> questions)
     : base(document)
 {
     this.Questions = new HashSet <SweetQuestion>(questions);
 }
Exemplo n.º 3
0
 public SweetQuestionsRemovedCache(SweetMutusDocument document, IEnumerable <SweetQuestion> questions)
     : base(document, questions)
 {
 }
Exemplo n.º 4
0
 protected SweetMutusDocumentCache(SweetMutusDocument document)
 {
     this.Document = document;
 }