public static void RemoveTag(this ITaskTagService taskTagService, string tag, IEnumerable <TooDueTaskItem> taskItems) { taskTagService.RemoveTags(new[] { tag }, taskItems); }
public static void RemoveTag(this ITaskTagService taskTagService, string tag, TooDueTaskItem taskItem) { taskTagService.RemoveTags(new[] { tag }, new[] { taskItem }); }
public static void RemoveTags(this ITaskTagService taskTagService, IEnumerable <string> tags, TooDueTaskItem taskItem) { taskTagService.RemoveTags(tags, new[] { taskItem }); }