예제 #1
0
 public async Task <Comment> AddComment(long id, string text, Guid userID, string userName)
 {
     return(await _certificateService.AddComment(id, text, new Officer
     {
         ID = userID,
         Name = userName
     }));
 }
예제 #2
0
 public async Task <Comment> MuftiComment(long id, string text)
 {
     return(await _certificateService.AddComment(id, text));
 }