11 lines
254 B
C#
11 lines
254 B
C#
using ReportingServices.ReportingObjects;
|
|
|
|
namespace ReportingServices.Dependency_Injections
|
|
{
|
|
public interface IJsonFileHandler
|
|
{
|
|
public void SaveJSONFile<T>(T obj, string file);
|
|
public T LoadJSONFile<T>(string file);
|
|
}
|
|
}
|