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