Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created November 8, 2023 19:59
Show Gist options
  • Save ahmetkucukoglu/d2ec6f02d8c25f31793579f2a3d98260 to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/d2ec6f02d8c25f31793579f2a3d98260 to your computer and use it in GitHub Desktop.
Adapter - CsvProductsExporterAdapter
public class CsvProductsExporterAdapter : IProductsExporter
{
private CsvHelper CsvHelper { get; set; }
public CsvProductsExporterAdapter(CsvHelper csvHelper)
{
CsvHelper = csvHelper;
}
public string Export(List<Product> data)
{
return CsvHelper.GenerateCsv(data.Cast<object>().ToList());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment