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