public static void Save <T>(T contents, string fileName) where T : class
 {
     SerializationHelper <T> .Save(contents, fileName);
 }
 public static void Save <T>(T contents, TextWriter writer) where T : class
 {
     SerializationHelper <T> .Save(contents, writer);
 }