Exemplo n.º 1
0
 public void Update(
     string subject,
     string body,
     string line,
     string from,
     string to,
     string column,
     DateTime startDateTime,
     Times.RepeatTypes type,
     int range,
     bool sendCompletedInPast,
     bool notSendIfNotApplicable,
     bool notSendHyperLink,
     int condition,
     bool disabled)
 {
     Subject                = subject;
     Body                   = body;
     Line                   = line;
     From                   = from;
     To                     = to;
     Column                 = column;
     StartDateTime          = startDateTime;
     Type                   = type;
     Range                  = range;
     SendCompletedInPast    = sendCompletedInPast;
     NotSendIfNotApplicable = notSendIfNotApplicable;
     NotSendHyperLink       = notSendHyperLink;
     Condition              = condition;
     Disabled               = disabled;
 }
Exemplo n.º 2
0
 public Reminder(
     int id,
     string subject,
     string body,
     string line,
     string from,
     string to,
     string column,
     DateTime startDateTime,
     Times.RepeatTypes type,
     int range,
     bool sendCompletedInPast,
     bool notSendIfNotApplicable,
     bool notSendHyperLink,
     bool excludeOverdue,
     int condition,
     bool disabled)
 {
     Id                     = id;
     Subject                = subject;
     Body                   = body;
     Line                   = line;
     From                   = from;
     To                     = to;
     Column                 = column;
     StartDateTime          = startDateTime;
     Type                   = type;
     Range                  = range;
     SendCompletedInPast    = sendCompletedInPast;
     NotSendIfNotApplicable = notSendIfNotApplicable;
     NotSendHyperLink       = notSendHyperLink;
     ExcludeOverdue         = excludeOverdue;
     Condition              = condition;
     Disabled               = disabled;
 }