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.
23 lines
634 B
23 lines
634 B
using notre_bibliotheque;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace données
|
|
{
|
|
public abstract class Chargeur : IChargeurDeCompte, IChargeurDeLangage, IChargeurDItems, IChargeurDeGestionaire
|
|
|
|
{
|
|
public Chargeur(string path)
|
|
{
|
|
|
|
}
|
|
|
|
public abstract Gestionaire ChargerGestionaireDeCompte();
|
|
public abstract Gestionaire ChargerGestionaireDeLangage();
|
|
public abstract IList<Item> ChargerLesComptes();
|
|
public abstract IList<Items> ChargerLesItems();
|
|
public abstract IList<Item> ChargerLesLangages();
|
|
}
|
|
}
|