예제 #1
0
        public IHttpActionResult QueryHighliht(string txt)
        {
            List <EmployeeDetail> emp = new List <EmployeeDetail>();

            emp = repo.Highlight(txt);
            return(Ok(emp));
        }