Beispiel #1
0
 public JiraMessageBuilder(Update update, string projectKey, string issueKey,
                           IBotMessageFormatter messageFormatter) : base(messageFormatter)
 {
     _update     = update;
     _projectKey = projectKey;
     _issueKey   = issueKey;
 }
 protected BotMessageBuilder(IBotMessageFormatter messageFormatter)
 {
     _sb = new StringBuilder();
     MessageFormatter = messageFormatter;
 }