using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataPersistence { public interface IDataManager { void Save(Dictionary> elements); Dictionary> Load(); public KeyValuePair Import(string pathToImport) where T : class; public void Export(T obj, string pathToExport) where T : class; } }