コード例 #1
0
ファイル: Attachment.cs プロジェクト: LazyBui/Peygir
 public bool Equals(Attachment other) => DBObject.IsEqual(this, other);
コード例 #2
0
ファイル: Attachment.cs プロジェクト: LazyBui/Peygir
 public static bool operator!=(Attachment lhs, Attachment rhs) => !DBObject.IsEqual(lhs, rhs);
コード例 #3
0
ファイル: Ticket.cs プロジェクト: LazyBui/Peygir
 public bool Equals(Ticket other) => DBObject.IsEqual(this, other);
コード例 #4
0
ファイル: Ticket.cs プロジェクト: LazyBui/Peygir
 public static bool operator!=(Ticket lhs, Ticket rhs) => !DBObject.IsEqual(lhs, rhs);
コード例 #5
0
ファイル: Project.cs プロジェクト: LazyBui/Peygir
 public static bool operator!=(Project lhs, Project rhs) => !DBObject.IsEqual(lhs, rhs);
コード例 #6
0
ファイル: Project.cs プロジェクト: LazyBui/Peygir
 public bool Equals(Project other) => DBObject.IsEqual(this, other);
コード例 #7
0
 public static bool operator==(TicketHistory lhs, TicketHistory rhs) => DBObject.IsEqual(lhs, rhs);
コード例 #8
0
 public static bool operator!=(Milestone lhs, Milestone rhs) => !DBObject.IsEqual(lhs, rhs);
コード例 #9
0
 public bool Equals(Milestone other) => DBObject.IsEqual(this, other);