Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created November 8, 2023 19:57
Show Gist options
  • Save ahmetkucukoglu/c3de406775288229de9b0f56934eac5d to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/c3de406775288229de9b0f56934eac5d to your computer and use it in GitHub Desktop.
JsonProductsExporter
public class JsonProductsExporter : IProductsExporter
{
public string Export(List<Product> products)
{
return JsonSerializer.Serialize(products);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment