Skip to content

Instantly share code, notes, and snippets.

@naeemaei
Last active March 19, 2020 12:02
Show Gist options
  • Save naeemaei/d0bfe442f6637504d0f3021f1699fced to your computer and use it in GitHub Desktop.
Save naeemaei/d0bfe442f6637504d0f3021f1699fced to your computer and use it in GitHub Desktop.
Dependency of invoice classes
// Create invoice items
public class InvoiceBuilder
{
private InvoiceCalculator InvoiceCalculator { get; set; }
public InvoiceBuilder()
{
InvoiceCalculator = new InvoiceCalculator();
}
}
// This class calculate each invoice
public class InvoiceCalculator
{
public InvoiceCalculator()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment