Exemplo n.º 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
     }));
 }
Exemplo n.º 2
0
 public async Task <Comment> MuftiComment(long id, string text)
 {
     return(await _certificateService.AddComment(id, text));
 }