public class Student { public string Name { get; set;} public int Age { get; set;} // Format class này dưới dạng text, html, json để in ra public string GetStudentInfoText() { return "Name: " + Name + ". Age: " + Age; } public string GetStudentInfoHTML() { return "" + Name + " " + Age + ""; } public string GetStudentInfoJson() { return Json.Serialize(this); } // Lưu trữ xuống database, xuống file public void SaveToDatabase() { dbContext.Save(this); } public void SaveToFile() { Files.Save(this, "fileName.txt"); } }