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.
39 lines
942 B
39 lines
942 B
using Biblioteque_de_Class;
|
|
using System.Runtime.Serialization;
|
|
using System.Runtime.Serialization.Json;
|
|
using System.Xml;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Notus_Persistance
|
|
{
|
|
public class ToXML : IManager
|
|
{
|
|
private const string DataFilePath = "data.xml";
|
|
private const string XmlDataFilePath = "userdata.xml";
|
|
|
|
public void SaveDatabaseData(Database database)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Database LoadDatabaseData()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SaveUserData(User user)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<User> LoadUserData()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|