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.
16 lines
412 B
16 lines
412 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
|
|
namespace notre_bibliotheque
|
|
{
|
|
/// <summary>
|
|
/// La classe Gestionnaire permet de creer des gestionnaire qui pouront implémenter une persistance.
|
|
/// </summary>
|
|
public abstract class Gestionaire
|
|
{
|
|
public static IPercistance Persistance { get; set; }
|
|
}
|
|
}
|