Exemplo n.º 1
0
        public async Task <string> AcknowledgeBatch([FromBody] long[] ids, Guid userID, string userName)
        {
            await _certificateService.AcknowledgeCertificateBatch(ids, new Officer
            {
                ID   = userID,
                Name = userName
            });

            return("Ok");
        }
Exemplo n.º 2
0
        public async Task <string> Acknowledge([FromBody] long[] ids)
        {
            await _certificateService.AcknowledgeCertificateBatch(ids);

            return("Ok");
        }