Exemplo n.º 1
0
        public async Task <IActionResult> Search(string searchstr, int skip, int limit, string currentPersonId)
        {
            List <PersonAllin> lstPerson = await m_PersonBusiness.Search(currentPersonId, searchstr, skip, limit);

            return(Json(lstPerson));
        }