public void GetDateType_Test() { IDataRepository <Person> uu = new PersonData(); IDataRepository <Content> ui = new CommentData(); var person = uu.GetById(1); var comment = ui.GetById(1); Console.WriteLine($"{person.FirstName}\n{comment.Journey}"); }