- Created MSTestSettings.cs to enable parallel test execution. - Added StyleTests.cs and TitreTests.cs for unit testing of Style and Titre entities. - Implemented Webzine.Entity.Tests project with necessary configurations. - Created SeedDataLocal.cs and SeedDataSpotify.cs for local and Spotify data seeding. - Established repository contracts for Artiste, Commentaire, Style, and Titre. - Developed DbEntityRepository and LocalEntityRepository classes. - Set up Webzine.WebApplication with controllers, logging, and Docker support. - Configured NLog for logging and added necessary appsettings for development. - Created initial views and layout for the web application. - Added Dockerfile and docker-compose configuration for containerization.
17 lines
302 B
C#
17 lines
302 B
C#
// using Webzine.Entity;
|
|
|
|
namespace Webzine.Repository.Contracts
|
|
{
|
|
public interface IStyleRepository
|
|
{
|
|
// void Add(Style style);
|
|
|
|
// void Delete(Style style);
|
|
|
|
// Style Find(int id);
|
|
|
|
// IEnumerable<Style> FindAll();
|
|
|
|
// void Update(Style style);
|
|
}
|
|
} |