using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.ObjectModel;
namespace ParionsCuite.Modeles
{
///
/// Defines the interface for a persistence manager.
///
public interface IPersistanceManager
{
///
/// Loads the data and returns a collection of events.
///
/// An of .
ObservableCollection chargeDonnees();
///
/// Saves the data by taking a collection of events as input.
///
/// The collection of events to be saved.
void sauvegardeDonnees(ObservableCollection evenements);
}
}