Skip to content

Instantly share code, notes, and snippets.

@otaviolarrosa
Created March 17, 2017 10:13
Show Gist options
  • Save otaviolarrosa/88e8b4ccc47d6e6e936c95ea3fb3b8f5 to your computer and use it in GitHub Desktop.
Save otaviolarrosa/88e8b4ccc47d6e6e936c95ea3fb3b8f5 to your computer and use it in GitHub Desktop.
using Patterns.AbstractFactory.Interfaces;
namespace Patterns.AbstractFactory.Faturamentos
{
public class Faturamento641 : IFaturamentoIndividual
{
public string GerarFaturasIndividual()
{
return "Fatura gerada para a empresa Bom Negócio Ltda.";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment