Skip to content

Instantly share code, notes, and snippets.

@otaviolarrosa
Created March 17, 2017 10:13
Show Gist options
  • Save otaviolarrosa/ffc1cbb47963dbd31d1e2868be3114c1 to your computer and use it in GitHub Desktop.
Save otaviolarrosa/ffc1cbb47963dbd31d1e2868be3114c1 to your computer and use it in GitHub Desktop.
using Patterns.AbstractFactory.Interfaces;
namespace Patterns.AbstractFactory.Faturamentos
{
public class Faturamento640 : IFaturamentoLote
{
public string GerarFaturasLote()
{
return "Faturas geradas para 10 empresas.";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment