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