Exemplo n.º 1
0
 public SmartEmpSearchInfo(MunisEmployee munisInfo, string searchValue, int matchDistance)
 {
     this.SearchResult  = munisInfo;
     this.SearchString  = searchValue;
     this.MatchLength   = searchValue.Length;
     this.MatchDistance = matchDistance;
 }
Exemplo n.º 2
0
 public SmartEmpSearchInfo(MunisEmployee munisInfo, string searchValue) : this(munisInfo, searchValue, 0)
 {
 }