Esempio n. 1
0
        public async Task <Boolean> Delete(int userId, int artistId)
        {
            UserArtistLink link = new UserArtistLink(userId, artistId);

            return(await _userArtistLinkService.DeleteItem(link));
        }
Esempio n. 2
0
 public async Task <UserArtistLink> AddNewItem([FromBody] UserArtistLink item)
 {
     return(await _userArtistLinkService.AddNewItem(item));
 }