using ReportingServices.ReportingObjects; namespace ReportingServices.Dependency_Injections { public interface IJsonFileHandler { public void SaveJSONFile(T obj, string file); public T LoadJSONFile(string file); } }