Skip to content

Instantly share code, notes, and snippets.

@otaviolarrosa
Created March 17, 2017 10:14
Show Gist options
  • Save otaviolarrosa/8796755da2ae5bff5848fcdc6c880c55 to your computer and use it in GitHub Desktop.
Save otaviolarrosa/8796755da2ae5bff5848fcdc6c880c55 to your computer and use it in GitHub Desktop.
using Patterns.AbstractFactory.Interfaces;
namespace Patterns.AbstractFactory.Faturamentos
{
public class Faturamento921 : IFaturamentoIndividual
{
public string GerarFaturasIndividual()
{
return "Fatura gerada para o cliente João da Silva.";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment