Ejemplo n.º 1
0
        public async Task <bool> AddSubscription(string profileId, SubscriptionUpsertDto profileSubscription)
        {
            var subscription = mapper.Map <DomainModels.Subscription>(profileSubscription);

            return(await profileRepository.AddSubscription(profileId, subscription));
        }