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