public static void WriteXml <T>(T model) where T : new() { SendData(FPXml.ToXml(model)); }
public static void WriteXml <T>(List <T> list) where T : new() { SendData(FPXml.ToXml(list)); }