public async Task <ActionResult <Alert> > GetAlertAsync(string auid)
        {
            var result = await alertRepository.GetAlertAsync(auid);

            return(Ok(result));
        }