Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public async Task<JsonResult> GetNotesAsyncJson(string data, string userIdentity, string searchByValue)
  2. {
  3. var notes = await this.noteService.SearchNotesAsync(data, userIdentity, searchByValue);
  4. var model = new SearchViewModel();
  5. model.Notes = notes;
  6.  
  7. return Json(model.Notes);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement