예제 #1
0
 public async Task <long> CollectCertificate(long id, Attachment attachment, string senderName,
                                             Guid userID, string username)
 {
     return(await _caseService.CollectCertificate(id, attachment, senderName, new Officer(userID, username)));
 }
예제 #2
0
 public async Task <long> CollectCertificate(long id, [FromBody] Attachment attachment, string senderName)
 {
     return(await _caseService.CollectCertificate(id, attachment, senderName));
 }