feat: Mise en œuvre ILocalEntityRepository et mise à jour LocalEntityRepository pour ensemencer les données
This commit is contained in:
12
Webzine.Repository.Contracts/ILocalEntityRepository.cs
Normal file
12
Webzine.Repository.Contracts/ILocalEntityRepository.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Webzine.Entity;
|
||||
|
||||
namespace Webzine.Repository.Contracts;
|
||||
|
||||
public interface ILocalEntityRepository
|
||||
{
|
||||
List<Artiste> Artistes { get; set; }
|
||||
List<Style> Styles { get; set; }
|
||||
List<Titre> Titres { get; set; }
|
||||
List<Commentaire> Commentaires { get; set; }
|
||||
void Seed();
|
||||
}
|
||||
Reference in New Issue
Block a user