public async Task <long> AddNotificationAsync(Notification notification)
        {
            var id = await _repository.AddAsync(notification);

            return(id);
        }