#106 Ajout du mode Repositories Local
This commit is contained in:
15
Webzine.Repository/InMemoryDataStore.cs
Normal file
15
Webzine.Repository/InMemoryDataStore.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Webzine.Entity;
|
||||
|
||||
namespace Webzine.Repository
|
||||
{
|
||||
public class InMemoryDataStore
|
||||
{
|
||||
public List<Artiste> Artistes { get; set; } = new();
|
||||
public List<Titre> Titres { get; set; } = new();
|
||||
public List<Style> Styles { get; set; } = new();
|
||||
public List<Commentaire> Commentaires { get; set; } = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user