Esempio n. 1
0
 public static ICreateIssue WithLabels(this ICreateIssue command, ICollection <Guid> labelsIds)
 {
     command.SetLabels(labelsIds);
     return(command);
 }
Esempio n. 2
0
 public static ICreateIssue WithAssignee(this ICreateIssue command, Guid assigneeId)
 {
     command.SetAssignee(assigneeId);
     return(command);
 }