public static async Task <bool> DestroyList(string slug, string ownerScreenName)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.DestroyList(slug, ownerScreenName)));
 }
 public static async Task <bool> DestroyList(long listId)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.DestroyList(listId)));
 }
 public static async Task <bool> DestroyList(string slug, IUserDTO ownerDTO)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.DestroyList(slug, ownerDTO)));
 }
 public static async Task <bool> DestroyList(ITweetListDTO tweetListDTO)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.DestroyList(tweetListDTO)));
 }