Skip to content

Instantly share code, notes, and snippets.

@otaviolarrosa
Last active March 17, 2017 10:12
Show Gist options
  • Save otaviolarrosa/91b5c54c1abd511aea990ade52ad6bab to your computer and use it in GitHub Desktop.
Save otaviolarrosa/91b5c54c1abd511aea990ade52ad6bab to your computer and use it in GitHub Desktop.
using System;
namespace Patterns.AbstractFactory.Interfaces
{
/// <summary>
/// Interface responsável por assinar o método de geração de faturas para diversos Clientes.
/// </summary>
public interface IFaturamentoLote
{
String GerarFaturasLote();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment