示例#1
0
 public bool Equals(AssigneeLogsFilteredDto other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(AssigneeId.Equals(other.AssigneeId) && ActivityId.Equals(other.ActivityId) &&
            LoggedTimeId.Equals(other.LoggedTimeId));
 }
示例#2
0
 public bool Equals(ProjectLogsDto other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(AssigneeId.Equals(other.AssigneeId) && ProjectId.Equals(other.ProjectId) &&
            ProjectGroupId.Equals(other.ProjectGroupId) && LoggedTimeId.Equals(other.LoggedTimeId));
 }