public async Task Consume(ConsumeContext <IUserActivated> context)
        {
            await _smsLogRepository.LogAsync(SmsLog.CreateInitialLog(context.Message));

            await _notificationFacade.SendEmailAsync(
                context.Message,
                Template.AccountActivationEmailUser,
                context.Message.Email);

            await _notificationFacade.SendSmsAsync(
                context.Message,
                Template.AccountActivationSmsUser,
                context.Message.Phone);
        }