16 lines
388 B
C#
16 lines
388 B
C#
// <copyright file="ArtisteRepository.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Webzine.Repository
|
|
{
|
|
using Webzine.Repository.Contracts;
|
|
/// <summary>
|
|
/// Implémentation de l'interface IArtisteRepository.
|
|
/// </summary>
|
|
public class ArtisteRepository : IArtisteRepository
|
|
{
|
|
|
|
}
|
|
}
|