예제 #1
0
 public async Task <ActionResult <bool> > Comment(CrmCommentModel request)
 {
     return(Ok(await _crmService.Comment(await GetUserId(),
                                         request,
                                         GetPermissionId())));
 }