public async Task <AlertGroup> Create(AlertGroup model)
        {
            var createdId = await _alertGroupRepository.Create(model);

            return(await _alertGroupRepository.Read(createdId));
        }