Esempio n. 1
0
        public IList <int> SearchDocumentosIds(string text, int tipodocumentoId = 0, string startDate = "", string endDate = "")
        {
            Log.App.InfoFormat("Pesquisando conteudos com o texto: {0}", text);
            var textQuery = new TextQuery(text);

            return(this.Search(textQuery.Incremented, tipodocumentoId, startDate, endDate));
        }
Esempio n. 2
0
 public IList<int> SearchDocumentosIds(string text, int tipodocumentoId = 0, string startDate = "", string endDate = "")
 {
     Log.App.InfoFormat("Pesquisando conteudos com o texto: {0}", text);
     var textQuery = new TextQuery(text);
     return this.Search(textQuery.Incremented, tipodocumentoId, startDate, endDate);
 }