public bool Equals(Completed other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(TaskId.Equals(other.TaskId) && TriggerDateUtc.Equals(other.TriggerDateUtc)); }
public bool Equals(Entry other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(TaskId.Equals(other.TaskId) && Equals(Recipient, other.Recipient) && Equals(Message, other.Message) && TriggerDateUtc.Equals(other.TriggerDateUtc) && RepeatInterval.Equals(other.RepeatInterval)); }
protected bool Equals(TaskReopened other) { return(TaskId.Equals(other.TaskId)); }