Exemplo n.º 1
0
        public async Task <IEnumerable <IMailSentData> > GetFollowAsync()
        {
            var partitionKey = MailSentEntity.GeneratePartitionKey("Follow");

            return(await _mailSentStorage.GetDataAsync(partitionKey));
        }
Exemplo n.º 2
0
        public async Task <IEnumerable <IMailSentData> > GetRegisterAsync(string userId)
        {
            var partitionKey = MailSentEntity.GeneratePartitionKey("Register");

            return(await _mailSentStorage.GetDataAsync(partitionKey));
        }