protected bool Equals(JobApplicationEntity other)
 {
     return(ApplicationDate.Equals(other.ApplicationDate) &&
            string.Equals(CompanyName, other.CompanyName, StringComparison.Ordinal) &&
            CurrentStatus == other.CurrentStatus &&
            Id == other.Id &&
            Equals(Owner, other.Owner));
 }
Exemplo n.º 2
0
 public bool Equals(JobApplication other)
 {
     return(string.Equals(CompanyName, other.CompanyName, StringComparison.Ordinal) &&
            ApplicationDate.Equals(other.ApplicationDate) &&
            Status == other.Status);
 }