Пример #1
0
 public async Task <IActionResult> PullSync([FromBody] List <NoteSyncRequestModel> model)
 {
     try
     {
         return(Ok(await _noteService.GetForPull(model, GetUserId())));
     }
     catch
     {
         return(BadRequest());
     }
 }