You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
691 B
34 lines
691 B
/*
|
|
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<GroupeLivre> GroupByAuthor = new List<GroupeLivre>();
|
|
|
|
|
|
|
|
public StubAuthor()
|
|
{
|
|
getGroupByAuthor();
|
|
}
|
|
|
|
|
|
private void getGroupByAuthor()
|
|
{
|
|
GroupByAuthor.Add(new GroupeLivre("Auteur 1",
|
|
new List<Book> { new Book { Title = "Title 1" } }));
|
|
|
|
GroupByAuthor.Add(new GroupeLivre("Auteur 2",
|
|
new List<Book> { new Book { Title = "Title 2" } }));
|
|
}
|
|
}
|
|
}
|
|
*/ |