public override bool Equals(object obj) { if (Object.ReferenceEquals(this, obj)) { return(true); } if (obj.GetType() != typeof(GostId)) { return(false); } GostId recievedObject = (GostId)obj; if ((Politicki_Miting.Id == recievedObject.Politicki_Miting.Id) && (Id == recievedObject.Id)) { return(true); } return(false); }
//public virtual IList<Funkcije> Funkcije {get; set;} public Gost() { Id = new GostId(); //Funkcije = new List<Funkcije>(); }