public ShellCo(string name, Employer employer, Location location, PositionType jobType, CoreCompetency coreCompetency) : this() { Name = name; EmployerName = employer; EmployerLocation = location; JobType = jobType; JobCoreCompetency = coreCompetency; }
public override bool Equals(object obj) { if (obj == null) { return(false); } if (obj.GetType() != this.GetType()) { return(false); } JobField jf = obj as JobField; return(this.Id == jf.Id); }