Example #1
0
 public SearchQueryViewModel(
     string keyword,
     PublishDateViewModel publishDate,
     ICollection <SkillViewModel> lookupSkills,
     ICollection <SkillViewModel> notMandatoryLookupSkills,
     int skipPages = 0
     )
 {
     this.Keyword                  = keyword;
     this.PublishDate              = publishDate;
     this.LookupSkills             = lookupSkills;
     this.NotMandatoryLookupSkills = notMandatoryLookupSkills;
     this.SkipPages                = SkipPages;
 }
 public SearchQueryViewModel(
     string keyword,
     PublishDateViewModel publishDate,
     ICollection<SkillViewModel> lookupSkills,
     ICollection<SkillViewModel> notMandatoryLookupSkills,
     int skipPages = 0
     )
 {
     this.Keyword = keyword;
     this.PublishDate = publishDate;
     this.LookupSkills = lookupSkills;
     this.NotMandatoryLookupSkills = notMandatoryLookupSkills;
     this.SkipPages = SkipPages;
 }