/* using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Model; using Model.Group; namespace MyStub { public class StubAuthor { public List GroupByAuthor = new List(); public StubAuthor() { getGroupByAuthor(); } private void getGroupByAuthor() { GroupByAuthor.Add(new GroupeLivre("Auteur 1", new List { new Book { Title = "Title 1" } })); GroupByAuthor.Add(new GroupeLivre("Auteur 2", new List { new Book { Title = "Title 2" } })); } } } */