public StavkaKey GetStavkaKey() { StavkaKey sid = new StavkaKey(); sid.IdStavka = ID; sid.ImeGlavno = ImeGlavno; return(sid); }
public override bool Equals(object obj) { if (obj == null) { return(false); } if (!(obj is StavkaKey)) { return(false); } StavkaKey st = obj as StavkaKey; if (st.IdStavka != IdStavka || st.ImeGlavno != ImeGlavno) { return(false); } return(true); }