Skip to content

Instantly share code, notes, and snippets.

@bgeihsgt
Last active August 29, 2015 14:14
Show Gist options
  • Save bgeihsgt/3cfe07efdb4648198bd2 to your computer and use it in GitHub Desktop.
Save bgeihsgt/3cfe07efdb4648198bd2 to your computer and use it in GitHub Desktop.
public class InvoiceGenerator
{
public Invoice GenerateInvoice(string watermarkText)
{
// ...
// Invoicy things
// ...
if (!String.IsNullOrEmpty(watermarkText))
{
WriteWatermark(invoice, watermarkText);
}
// ...
// More Invoicy things
// ...
}
private void WriteWatermark(Invoice invoice, string watermarkText)
{
// ...
// Watermarky things
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment