ISearch.cs 276 B

1234567891011121314
  1. using PMS.BusinessModels.Search;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PMS.Interface.Search
  8. {
  9. public interface ISearch
  10. {
  11. string titlePrecision(string keyword);
  12. }
  13. }