public TemplaterProcessDocument(
            SearchDomainObject searchDomain,
            GetDomainObject getDomain)
        {
            Contract.Requires(searchDomain != null);
            Contract.Requires(getDomain != null);

            this.SearchDomain = searchDomain;
            this.GetDomain    = getDomain;
        }
Exemple #2
0
 public CheckDomainObject(GetDomainObject getDomainObject)
 {
     this.GetDomainObject = getDomainObject;
 }