Exemplo n.º 1
0
        public async Task <bool> SubscribeToTagAsync(SubscribeTagDto subscribeTagDto)
        {
            UserTag userTag = this._mapper.Map <SubscribeTagDto, UserTag>(subscribeTagDto);

            return(await this._tagAccessor.SubscribeToTag(userTag));
        }
Exemplo n.º 2
0
 public async Task <bool> SubscribeToTagAsync([FromBody] SubscribeTagDto subscribeTagDto)
 {
     return(await this.tagManager.SubscribeToTag(subscribeTagDto));
 }
Exemplo n.º 3
0
 public async Task <bool> SubscribeToTag(SubscribeTagDto subscribeTagDto)
 {
     return(await this._tagEngine.SubscribeToTagAsync(subscribeTagDto));
 }