using System; using System.Collections.Generic; using System.Linq; using System.Web; using EHEC_Server; namespace EHEC_Server { public class ClusterConverter { public void WriteJson() { var json = JsonConverter.Serialize(GetCompanyObject()); System.IO.File.WriteAllText(@"C:\Users\Public\Documents\Company.json", json); } private List GetClusterPatient() { return new List(); } } }