Skip to content

Instantly share code, notes, and snippets.

@otaviolarrosa
Last active March 17, 2017 10:12
Show Gist options
  • Save otaviolarrosa/6f27f30922ab613fa41643fff4d08216 to your computer and use it in GitHub Desktop.
Save otaviolarrosa/6f27f30922ab613fa41643fff4d08216 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 apenas um cliente.
/// </summary>
public interface IFaturamentoIndividual
{
String GerarFaturasIndividual();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment