Пример #1
0
 public async Task <IHttpActionResult> AddComments(CandidateSubmissionAppointmentUserCommentViewModel data)
 {
     try
     {
         return(Ok((await _service.AddComments(data))));
     }
     catch (Exception)
     {
         throw;
     }
 }