예제 #1
0
 public static void RemoveTag(this ITaskTagService taskTagService, string tag, IEnumerable <TooDueTaskItem> taskItems)
 {
     taskTagService.RemoveTags(new[] { tag }, taskItems);
 }
예제 #2
0
 public static void RemoveTag(this ITaskTagService taskTagService, string tag, TooDueTaskItem taskItem)
 {
     taskTagService.RemoveTags(new[] { tag }, new[] { taskItem });
 }
예제 #3
0
 public static void RemoveTags(this ITaskTagService taskTagService, IEnumerable <string> tags, TooDueTaskItem taskItem)
 {
     taskTagService.RemoveTags(tags, new[] { taskItem });
 }