コード例 #1
0
 public static string IncidentAdded(User user, Incident inc)
 {
     return string.Format(Resources.IncidentAddedMsg,
         user.FullName,
         inc.Title,
         inc.Description,
         inc.StartTime,
         inc.Priority);
 }
コード例 #2
0
 public NotifyManager(string message, User to)
 {
     _message = message;
     _to = to;
 }
コード例 #3
0
 public JabberNotifier(string message, User to)
 {
     _message = message;
     _to = to;
 }