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