Skip to content

Instantly share code, notes, and snippets.

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