public IdHolder( IdHolder <T1> idHolder, IdHolder <T2> idHolder2) { IdHolderT1 = idHolder; IdHolderT2 = idHolder2; }
public IdHolder CombineWith(IdHolder idHolder) { if (idHolder.Id != Id) { return(this); } return(UpdateObjects(idHolder)); }